I recently started working on my portfolio once again. I updated Zola and changed the main structure of my site to be just like the [overview tutorial].(Overview | Zola)
All was fun and games until I started creating blog pages and discovered they don’t use the style sheet at all, so they are pure black text over a white background.
My blog: T3kla’s Portfolio and Blog
blog.html
{% extends "base.html" %}
{% block content %}
<div class="blog">
{% for page in section.pages %}
<div class="blog-entry">
<p class="blog-entry-date">{{ page.year }}-{{ page.month }}-{{ page.day }}</p>
<div class="blog-entry-separator"></div>
<div class="blog-entry-main">
<a class="blog-entry-title" href="{{ page.permalink | safe }}">{{ page.title }}</a>
<div class="blog-entry-tags">
{% for tag in page.extra.tags %}
<p class="blog-entry-tag">{{tag}}</p>
{% endfor %}
</div>
</div>
<div class="blog-entry-separator"></div>
<div class="blog-entry-extra">
<p class="blog-entry-words">{{ page.word_count }} words</p>
<p class="blog-entry-time">{{ page.reading_time }} minutes</p>
</div>
</div>
{% endfor %}
</div>
{% endblock content %}
blog-page.html
{% extends "base.html" %}
{% block content %}
<h1 class="title">{{ page.title }}</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}