mirror of
https://github.com/rottenwheel/revuo-weekly.git
synced 2025-12-15 16:18:57 -05:00
Initial commit with site and first Revuo Weekly issue
This commit is contained in:
commit
8d5620cdff
44 changed files with 1773 additions and 0 deletions
21
_includes/menu.html
Normal file
21
_includes/menu.html
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<nav {% if site.reverse == true %}id="nav-left"{% else %}id="nav"{% endif %}>
|
||||
<div id="nav-list">
|
||||
<a href="{{ site.baseurl }}">Home</a>
|
||||
|
||||
<!-- Nav pages -->
|
||||
{% for page in site.pages %}
|
||||
{% if page.layout == "page" %}
|
||||
<a href="{% if site.baseurl == "/" %}{{ page.url }}{% else %}{{ page.url | prepend: site.baseurl }}{% endif %}" title="{{ page.title }}">{{ page.title }}</a>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Nav footer -->
|
||||
{% if site.custom_nav_footer == true %}
|
||||
{% include nav-footer-custom.html %}
|
||||
{% else %}
|
||||
{% include nav-footer.html %}
|
||||
{% endif %}
|
||||
|
||||
</nav>
|
||||
Loading…
Add table
Add a link
Reference in a new issue