layout: default excerpt: “” # NOTE: this empty excerpt fixes liquid “'if' tag was never closed included” error: jekyllrb.com/docs/troubleshooting/#excerpts
{%-assign title = page.title | default: page.tag | prepend: 'Tagged “' | append: '”'-%} {%-assign projects = site.projects | where_exp: “project”, “project.tags contains page.title” | where: “published”, “true”-%} {%-assign pages = site.pages | where_exp: “pg”, “pg.tags contains page.title” | where: “published”, “true”-%}
<section>
{% include page_header.html page_title=title %} <!-- Page Content --> <hr class="major"/> <!-- <h2><i class="far fa-sticky-note" style="font-size: 0.9em;"></i> Posts</h2> --> {% include posts.html %} {% if projects != empty-%} <h2><i class="fas fa-project-diagram" style="font-size: 0.7em;"></i> Projects {{ title-}}</h2> {% include projects.html %} {%-endif-%} {% if pages != empty-%} <h2><i class="far fa-file-alt" style="font-size: 0.8em;"></i> Pages {{ title-}}</h2> {% include pages.html %} {%-endif-%}
</section>