Finalize styling changes to main page

This commit is contained in:
Froge 2025-02-03 01:52:51 +10:00
parent cb89c32b1a
commit a865751408
Signed by: froge
GPG key ID: A825E09930271BFA
3 changed files with 45 additions and 25 deletions

View file

@ -16,19 +16,18 @@
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██████ ███████ ██ ██ ██ ██ ██ ██████ ██████ ██ ██ ██ ███████
</pre></a></div>
<div class="dotted-border"></div>
<main id="main-content">
<div id="welcome-message">
<h1 class="title">
Welcome
</h1>
<p>
This blog is made with 💜 and <a target="_blank" href="https://www.getzola.org">Zola!</a>
</br>
It's currently running on <a target="_blank" href="https://www.vultr.com">Vultr</a> for free with 500MB of RAM and <a target="_blank" href="https://www.openbsd.org">OpenBSD</a>
<h1 class="title">Welcome</h1>
<p>This blog is made with 💜 and <a target="_blank" href="https://www.getzola.org">Zola!</a></p>
<p>It's currently running on <a target="_blank" href="https://www.vultr.com">Vultr</a> for free with 500MB of RAM and <a target="_blank" href="https://www.openbsd.org">OpenBSD</a>
</p>
</div>
<div class="blog-posts">
{% block content %} {% endblock %}
<div class="dotted-border"></div>
<div class="blog-post-container">
<h3 class="title">View the latest posts</h3>
{% block content %} {% endblock %}
</div>
</main>
</div>

View file

@ -5,7 +5,7 @@
<!-- If you are using pagination, section.pages will be empty.
You need to use the paginator object -->
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
<li class="blog-post-title">{{ page.date }} // <a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}