DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ee275db66e7cdacec3c73dfc7647a581c121b62c — Jonni Liljamo 16 days ago 940b02c
feat: remove seldom used external link
M content/example/_index.md => content/example/_index.md +0 -3
@@ 18,9 18,6 @@ status = "inactive"
git = "https://git.tld"
docs = "https://docs.tld"

external_link = "https://demo.tld"
external_link_visual = "demo"

logs_visual = "Change-/devlog"
+++


M content/liljamo.com/_index.md => content/liljamo.com/_index.md +0 -3
@@ 10,9 10,6 @@ template = "project.html"
id = "liljamo.com"

status = "active"

external_link = "https://liljamo.com"
external_link_visual = "liljamo.com"
+++

My personal website, created with [zola](https://getzola.org).

M content/liljamo.dev/_index.md => content/liljamo.dev/_index.md +0 -3
@@ 12,9 12,6 @@ id = "liljamo.dev"
status = "active"

git = "https://git.src.quest/~liljamo/liljamo-dev-zola"

external_link = "https://liljamo.dev"
external_link_visual = "liljamo.dev"
+++

This website, created with [zola](https://getzola.org).

M templates/project.html => templates/project.html +0 -5
@@ 14,11 14,6 @@
        {% else %}
        <p class="text-amber-400 font-semibold">unknown</p>
        {% endif %}
        {% if section.extra.external_link %}
        <p class="lg:text-lg">See it in action: <a data-umami-event="project-{{ section.extra.id }}-external" class="hover:underline italic font-semibold" rel="noopener" target="_blank" href={{ section.extra.external_link }}>
            {{ section.extra.external_link_visual }}
        </a></p>
        {% endif %}
        {% if section.extra.git %}
        <a data-umami-event="project-{{ section.extra.id }}-git" class="lg:text-lg text-orange-400 font-semibold hover:underline" rel="noopener" target="_blank" href={{ section.extra.git }}>Git 🦊</a>
        {% endif %}