{%- import "components/social_card.html" as sc -%} {% extends "base.html" %} {% block content %} {% if posts.len() == 0 %} You've found void in the space. {% else %} {% if let Some(t) = tag %} #{{t}} {% else %} Blog posts {% endif %} {% for tag in blog_tags %} #{{tag|capitalize}} {% endfor %} {% for post in posts %} {% include "components/blog_post_preview.html" %} {% endfor %} {% endif %} {% include "sections/social.html" %} Showcase {% for project in featured_projects %} {% include "components/project_preview_card.html" %} {% endfor %} {% endblock %}
You've found void in the space.