1
0
mirror of https://github.com/prometheus/docs.git synced 2026-02-06 09:44:54 +01:00
Files
docs/layouts/docs.html
Julius Volz 9c6c46c3c3 Point out that docs are open source and can be edited (#1033)
* Point out that docs are open source and can be edited

Signed-off-by: Julius Volz <julius.volz@gmail.com>

* Add contribution clarifications to README.md, link to it

Signed-off-by: Julius Volz <julius.volz@gmail.com>
2018-05-29 21:07:24 +02:00

25 lines
697 B
HTML

<%= render 'header' %>
<div class="container">
<div class="row">
<div class="col-md-3 side-nav-col">
<ul class="nav navbar-nav side-nav">
<% @items['/docs/'].children.sort_by { |i| i[:sort_rank] || 0 }.each do |i| %>
<%= nav(i) %>
<% end %>
</ul>
</div>
<div class="col-md-9 doc-content">
<%= yield %>
<p class="open-source-notice">
<i class="fa fa-file"></i> This documentation is <a href="https://github.com/prometheus/docs#contributing-changes">open-source</a>. Please help improve it by filing issues or pull requests.
</p>
</div>
</div>
<%= render 'container_footer' %>
</div>
<%= render 'footer' %>