Browse Source

Removed columns test

redesign
Anxhelo Lushka 7 years ago
committed by GitHub
parent
commit
eea543a291
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tags/index.html

2
tags/index.html

@ -20,7 +20,6 @@ title: "#Tags"
</div> </div>
{% for tag in site.tags %} {% for tag in site.tags %}
<div class="large-9 columns">
<span class="tag-title" id="{{ tag[0] | slugify }}">{{ tag[0] }}</span> <span class="tag-title" id="{{ tag[0] | slugify }}">{{ tag[0] }}</span>
<ul class="post-list-tags"> <ul class="post-list-tags">
{% assign pages_list = tag[1] %} {% assign pages_list = tag[1] %}
@ -28,7 +27,6 @@ title: "#Tags"
{% if post.title != null %} {% if post.title != null %}
{% if group == null or group == post.group %} {% if group == null or group == post.group %}
<li><a href="{{ site.url }}{{ post.url | replace:'.html','' }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%d %B %Y" }}</time></a></li> <li><a href="{{ site.url }}{{ post.url | replace:'.html','' }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%d %B %Y" }}</time></a></li>
</div>
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}

Loading…
Cancel
Save