Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<style> .adminsquares > * { border: 1px solid #c9ff23; border-radius: 5px; padding: 0px; flex: 1 1 100px; overflow: hidden; } .adminsquares { display: flex; flex-flow: row wrap; padding: 15px; gap: 5px; width:100%; height: auto; } .adminsquares img { width: 100%; } </style> <div class="adminsquares"> {% for post in site.posts %} <ARTICLE itemprop="blogPosts" itemscope itemtype="https://schema.org/BlogPosting" > <a href="{{ site.github.url }}{{ post.url }}"> <div class="featured-post" {% if post.image %}style="background-image:url({{ site.github.url }}/assets/img/{{ post.image }})"{% endif %}> <h2 itemprop="headline"><span>{{ post.title }}</span></h2> </div> </a> </ARTICLE> {% endfor %} </div> </SECTiON> </MAIN>
- Loading branch information