1
2019-06-27 22:25:43 -04:00

69 lines
1.8 KiB
HTML

<!-- <section id="two">
<div class="inner">
<header class="major">
<h2>Projects</h2>
</header>
</div>
</section>
<section id="one" class="tiles">
{% for post in site.posts limit:site.tiles-count %}
{% if site.tiles-source == 'posts'%} {% if post.tag == 'projects'%}
<article>
<span class="image">
<img src="{{ post.image }}" alt="" />
</span>
<header class="major">
<h3><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
</header>
</article>
{% endif %}{% endif %}
{% endfor %}
</section>
<section id="two">
<div class="inner">
<header class="major">
<h2>Robotics</h2>
</header>
</div>
</section>
<section id="one" class="tiles">
{% for post in site.posts limit:site.tiles-count %}
{% if site.tiles-source == 'posts'%} {% if post.tag == 'frc'%}
<article>
<span class="image">
<img src="{{ post.image }}" alt="" />
</span>
<header class="major">
<h3><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
</header>
</article>
{% endif %}{% endif %}
{% endfor %}
</section>
<section id="two">
<div class="inner">
<header class="major">
<h2>Other</h2>
</header>
</div>
</section> -->
<section id="one" class="tiles">
{% for post in site.posts limit:site.tiles-count %}
{% if site.tiles-source == 'posts' %}
<article>
<span class="image">
<img src="{{ post.image }}" alt="" />
</span>
<header class="major">
<h3><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
</header>
</article>
{% endif %}
{% endfor %}
</section>