fixed bug with news links. fixed style tag in footer.

This commit is contained in:
tomjohnson1492
2016-07-20 07:11:22 -07:00
parent edbed043f3
commit 37a0e4fef0
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<div class="row"> <div class="row">
<div class="col-lg-12 footer"> <div class="col-lg-12 footer">
&copy;{{ site.time | date: "%Y" }} {{site.company_name}}. All rights reserved. <br /> &copy;{{ site.time | date: "%Y" }} {{site.company_name}}. All rights reserved. <br />
{% if page.last_updated %}<p>Page last updated:</span> {{page.last_updated}}<br/>{% endif %} Site last generated: {{ site.time | date: "%b %-d, %Y" }} <br /> {% if page.last_updated %}<p>Page last updated:</p> {{page.last_updated}}<br/>{% endif %} Site last generated: {{ site.time | date: "%b %-d, %Y" }} <br />
<p><img src="{{ "images/company_logo.png" }}" alt="Company logo"/></p> <p><img src="{{ "images/company_logo.png" }}" alt="Company logo"/></p>
</div> </div>
</div> </div>

View File

@ -26,7 +26,7 @@ folder: news
<ul class="past"> <ul class="past">
{% endif %} {% endif %}
{% endunless %} {% endunless %}
<li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li> <li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url | remove: "/"}}">{{ post.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
</section> </section>