Added instructions for creating navtabs. Added documentation for configuration file options. Made a few style tweaks. Moved mini-TOC to float on the right. Redid the styling for the mini-TOC bar.
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
<footer>
|
||||
<div class="row">
|
||||
<div class="col-lg-12 footer">
|
||||
<a href="{{ "/copyright" | prepend: site.baseurl }}">©2015 AdTruth</a>. All rights reserved. <br />
|
||||
<a href="{{ "/copyright" | prepend: site.baseurl }}">©2015 Your Company</a>. All rights reserved. <br />
|
||||
<p>Site last generated: {{ site.time | date: "%b %-d, %Y" }} <br />
|
||||
<p><img src="{{ "/41stlogo.jpeg" | prepend: site.baseurl }}"/></p>
|
||||
<p><img src="{{ "/images/jekyll.png" | prepend: site.baseurl }}"/></p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
35
_includes/pagemetadata.html
Normal file
35
_includes/pagemetadata.html
Normal file
@ -0,0 +1,35 @@
|
||||
<!-- start page metadata -->
|
||||
{% unless page.metadata == false %}
|
||||
|
||||
<div class="pageMetadata">
|
||||
<div class="pageMetadataTitle">Table of Contents</div>
|
||||
{% include toc.html %}
|
||||
<hr/>
|
||||
{% if page.tags != null or page.audience != null or page.last_updated != null %}
|
||||
<div class="pageMetadataTitle">Page Information</div>
|
||||
{% endif %}
|
||||
{% if page.tags != null %}
|
||||
<div class="metadataRow"><span class="tagTitle">Tags:</span>
|
||||
{% for tag in page.tags %}
|
||||
{% if site.data.tags.allowed-tags contains tag %}
|
||||
<a href="{{ "/tag-" | prepend: site.baseurl | append: {{tag}}/index.html ">{{tag}}</a>{% unless forloop.last %}, {% endunless%}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if site.show_audience_label == true and page.audience != null %}
|
||||
|
||||
<div class="metadataRow"><span class="tagTitle">Audience:</span>
|
||||
{% for audience in page.audience %}
|
||||
{{audience}} {% unless forloop.last %}, {% endunless%}
|
||||
{% endfor %}
|
||||
{% endif %}</div>
|
||||
|
||||
{% if page.last_updated != null %}
|
||||
<p><div class="metadataRow"><span class="tagTitle">Last updated:</span> {{page.last_updated}}</div></p>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% endunless %}
|
||||
<!-- end pageMetadata -->
|
Reference in New Issue
Block a user