Beginning to prepare pages of new site
Could load the theme from an external repo, so everything will need to fit in here. Can be built locally, though.
This commit is contained in:
parent
3a01503f87
commit
f87977b80f
37 changed files with 1599 additions and 973 deletions
|
@ -85,15 +85,34 @@ layout: default
|
|||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div id="sidebar">
|
||||
<ul>
|
||||
{% for item in site.data.nav.docsnav %}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link js-scroll-trigger" href="{{ item.url }}">{{ item.page }}</a>
|
||||
<a class="nav-link" href="{{ item.url }}">{{ item.page }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<nav id="sidebar">
|
||||
<div class="sidebar-header">
|
||||
<h3>Table of Contents</h3>
|
||||
</div>
|
||||
|
||||
{% for item in site.data.nav.docsnav %}
|
||||
<ul class="list-unstyled components">
|
||||
<i>{{ item.section }}</i>
|
||||
{% for entry in item.contents %}
|
||||
<li>
|
||||
<a href="{{ entry.url }}">{{ entry.page }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</nav>
|
||||
|
||||
<div class="container-fluid">
|
||||
<!-- This is the main content of the page getting pulled from the MDs -->
|
||||
<div class="content">
|
||||
|
|
|
@ -226,7 +226,9 @@
|
|||
<h5>Follow the docs, and you'll be off the ground in no time!</5>
|
||||
|
||||
<div class="start-buttons" style="padding: 20px;">
|
||||
<a class="btn btn-light btn-xl sr-button" target="_blank" href="http://libretime.org/#getting-started">Vagrant/Manual Install</a>
|
||||
<a class="btn btn-light btn-xl sr-button" target="_blank" href="quickstart">Quick Install</a>
|
||||
|
||||
<a class="btn btn-light btn-xl sr-button" target="_blank" href="vagrant">Vagrant</a>
|
||||
|
||||
<a class="btn btn-light btn-xl sr-button" target="_blank" href="https://github.com/ned-kelly/docker-multicontainer-libretime/blob/master/README.md">Docker Deployment</a>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue