1
0
Fork 0
forked from github/pelican

feat: add work in progress state

This commit is contained in:
Oliver Ladner 2024-10-21 07:53:36 +02:00
commit de5b3aec04
14 changed files with 2537 additions and 37 deletions

View file

@ -15,12 +15,27 @@
{% block content %}
<article>
<header>
{% if not page.image %}
<h2>{{ page.title }}</h2>
{% endif %}
{% if page.image %}
<div class="relative overflow-hidden h-[350px]">
<img class="w-full h-full object-cover object-center rounded-lg opacity-65" src="/img/banner/{{ page.image }}" alt="" />
<div class="absolute bottom-8 left-0 text-green-300">
<h2><span class="leading-relaxed bg-gray-700 p-2"><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark" title="Permalink to {{ page.title|striptags }}" class="no-underline text-green-300">{{ page .title }}</a></span></h2>
</div>
</div>
{% endif %}
</header>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
<div class="leading-relaxed">
{{ page.content }}
</div>
{% if page.modified %}
<footer>