This commit is contained in:
Justin Ethier 2018-05-04 14:10:04 -04:00
parent c4b6bd8406
commit 9165c89ac0

View file

@ -63,7 +63,8 @@
<!-- MAIN CONTENT --> <!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer"> <div id="main_content_wrap" class="outer">
<section id="main_content" class="inner"> <section id="main_content" class="inner">
<div id="news" style=" {% if page.title == "Cyclone Scheme" %}
<div id="recent-news" style="
position: absolute; position: absolute;
/* float: left; */ /* float: left; */
left: 675px; left: 675px;
@ -81,12 +82,13 @@
<h2>Recent News</h2> <h2>Recent News</h2>
{% for post in site.posts limit:3 %} {% for post in site.posts limit:3 %}
<h4> <h4>
<a href="{{ post.url }}">{{ post.title }}</a> <a href="/cyclone/{{ post.url }}">{{ post.title }}</a>
</h4> </h4>
<span class="date-labels">{{post.date | date: "%b %d %Y" }}</span> <span class="date-labels">{{post.date | date: "%b %d %Y" }}</span>
{{ post.excerpt }} {{ post.excerpt }}
{% endfor %} {% endfor %}
</div> </div>
{% endif %}"
{{ content }} {{ content }}
</section> </section>
</div> </div>