layout |
---|
main |
.column { float: left; width: 14.2857142857%; padding: 5px 0px 0px 5px; }
.row:after { content: ""; display: table; clear: both; }
@media screen and (max-width: 600px) { .column { width: 100%; padding: 5px 100px 5px 100px; }
</style> <style> a:link { color: #5b82af; background-color: transparent; text-decoration: none; } a:visited { color: #5b82af; background-color: transparent; text-decoration: none; } a:hover { color: #2395E4; background-color: transparent; text-decoration: none; } a:active { color: #5b82af; background-color: transparent; text-decoration: none; } </style>This page is dedicated to robot makers from around the world who embrace all LEGO robotic platforms (MINDSTORMS Legacy & Robot Inventor, SPIKE Prime, WeDo, BOOST and PoweredUp) to MAKE robots, SHARE the passion and INSPIRE generations to come! Showcasing interest in Science, Technology, Engineering, Arts, and Mathematics via the joys of "playing" with LEGO.
<div id="grid" class="row flex-grid">
{% for post in site.posts %}
<article class="box-item" itemscope="itemscope" itemtype="http://schema.org/BlogPosting" itemprop="blogPost">
<span class="category">
</span>
<div class="box-body">
{% if post.image %}
<div class="cover">
<!--{% include new-post-tag.html date=post.date %}-->
<a href="{{ post.url | prepend: site.baseurl }}" >
<img src="assets/img/placeholder.png" data-url="{{ post.image }}" class="preload">
</a>
</div>
{% endif %}
<div class="box-info">
<meta itemprop="datePublished" content="{{ post.date | date_to_xmlschema }}">
<!-- <time itemprop="datePublished" datetime="{{ post.date | date_to_xmlschema }}" class="date">
{% include date.html date=post.date %}
</time>-->
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title" itemprop="name">
{{ post.title }}
</h2>
</a>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<p class="description">{{ post.introduction }}</p>
</a>
<div class="tags">
{% for tag in post.tags %}
<a href="{{ site.baseurl}}/tags/#{{tag | slugify }}">{{ tag }}</a>
{% endfor %}
</div>
</div>
</div>
</article>
{% endfor %}
</div>