fix: remove blog components (plugin not installed)
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run

This commit is contained in:
2026-08-21 20:37:10 -06:00
parent baa7464688
commit 35e690c987
3 changed files with 5 additions and 38 deletions

View File

@@ -1,23 +1,15 @@
title = "Articulo — Blog VivesPOS"
meta_title = "{{ post.title }} — VivesPOS Blog"
meta_description = "{{ post.summary|default('') }}"
meta_title = "Articulo — VivesPOS Blog"
meta_description = "Blog VivesPOS"
url = "/blog/post/:slug"
layout = "default"
[blogPost]
slug = "{{ :slug }}"
==
{% set post = blogPost.post %}
<section class="py-5 py-md-6">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<p class="text-muted small mb-2">{{ post.published_at|date('d M Y') }}</p>
<h1 class="display-6 fw-bold mb-4">{{ post.title }}</h1>
<div class="post-content">
{{ post.content|raw }}
</div>
<hr class="my-4">
<p class="text-muted">El blog estara disponible pronto.</p>
<a href="{{ '/blog'|page }}" class="text-brand text-decoration-none fw-semibold">&larr; Volver al blog</a>
</div>
</div>