Skip to content

Commit

Permalink
fixed tag pages
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoberon committed Jul 26, 2024
1 parent 7d421fd commit a97daa4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
10 changes: 6 additions & 4 deletions tag/cis-cod.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ layout: default
{% endfor %}


<h1>{{ tag }} Posts</h1>
<h1 class="page-heading">posts tagged with <em>{{ tag }}</em> </h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}
<ul class="post-list">
{% for post in tagged_posts %}
{% include post.html %}
{% endfor %}
</ul>

10 changes: 6 additions & 4 deletions tag/coordinates.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ layout: default
{% endfor %}


<h1>{{ tag }} Posts</h1>
<h1 class="page-heading">posts tagged with <em>{{ tag }}</em> </h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}
<ul class="post-list">
{% for post in tagged_posts %}
{% include post.html %}
{% endfor %}
</ul>

10 changes: 6 additions & 4 deletions tag/dsat.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ layout: default
{% endfor %}


<h1>{{ tag }} Posts</h1>
<h1 class="page-heading">posts tagged with <em>{{ tag }}</em> </h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}
<ul class="post-list">
{% for post in tagged_posts %}
{% include post.html %}
{% endfor %}
</ul>

10 changes: 6 additions & 4 deletions tag/tiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ layout: default
{% endfor %}


<h1>{{ tag }} Posts</h1>
<h1 class="page-heading">posts tagged with <em>{{ tag }}</em> </h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}
<ul class="post-list">
{% for post in tagged_posts %}
{% include post.html %}
{% endfor %}
</ul>

0 comments on commit a97daa4

Please sign in to comment.