1
0
mirror of https://github.com/arsenetar/arsenetar.github.io.git synced 2026-01-28 09:11:37 +00:00

Update blog style templates and configuration.

This commit is contained in:
2014-01-07 18:36:14 -05:00
parent 0d1a8bee77
commit d2fcf71162
21 changed files with 487 additions and 221 deletions

View File

@@ -24,11 +24,6 @@
<!-- Modernizr -->
<script src="{{ site.url }}/assets/js/modernizr.js"></script>
<!-- Capture a header image -->
{% if page.feature or site.feature %}
{% capture feature %}{% if page.feature %}{{ page.feature }}{% else %}{{ site.feature }}{% endif %}{% endcapture %}
{% unless feature.url contains 'http://' or feature.url contains 'https://' %}{% capture feature %}{{ site.url }}/images/{{ feature.url }}{% endcapture %}{% endunless %}
{% endif %}
</head>
<body>
<div class="contain-to-grid">
@@ -43,7 +38,15 @@
<section class="top-bar-section">
<!-- Left Nav Section -->
<ul class="left">
<li><a href="{{ site.url }}/About/">About</a></li>
{% for item in site.data.menu %}
<li><a href="
{% if item.link contains 'http' %}
{{ item.link }}
{% else %}
{{ site.url }}{{ item.link }}
{% endif %}
">{{ item.name }}</a></li>
{% endfor %}
</ul>
<!-- Right Nav Section -->
@@ -59,4 +62,5 @@
</ul>
</section>
</nav>
</div>
</div>