1
2019-06-28 15:40:29 -04:00

101 lines
2.5 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>
<!-- <article>
<section id="one" class="posts">
{% for post in site.posts limit:site.tiles-count %}
{% if site.tiles-source == 'posts' %}
<article>
<header class="">
<h3 class="list-post-title"><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
</header>
</article>
<hr>
{% endif %}
{% endfor %}
</section>
</article> -->
<article>
<section id="two">
<div class="inner">
<!-- <header class="major">
<h2>Massa libero</h2>
</header>
<p>{{ content }}</p> -->
<ul class="actions">
<li><a href="all_posts.html" class="button next">View All</a></li>
</ul>
</div>
</section>
</article>