mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2025-04-28 08:05:57 +02:00
Fix: now whitelabelling works
This commit is contained in:
parent
517439d4e6
commit
3d9bb9a26b
7 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
<footer>
|
||||
<p>
|
||||
© {{ metadata.author }}
|
||||
© {{ author }}
|
||||
<a href="https://gitlab.com/parroquia-san-leandro/cancionero-web"><span>Código fuente</span></a>
|
||||
</p>
|
||||
</footer>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<meta charset="UTF-8">
|
||||
<title>{{ metadata.title }}</title>
|
||||
<title>{{ title }}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<link rel="icon" type="image/svg+xml" href="{{ path|urlencode }}/favicon.svg"/>
|
||||
<link rel="stylesheet" type="text/css" href="{{ path|urlencode }}/main.css"/>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<header>
|
||||
<h1><a href="{{ path }}">{{ metadata.title }}</a></h1>
|
||||
{% if metadata.links %}
|
||||
<h1><a href="{{ path }}">{{ title }}</a></h1>
|
||||
{% if links %}
|
||||
<nav class="nav">
|
||||
<ul>
|
||||
<li><a href="https://sanleandrovalencia.es/"><span id="nav-web">Parroquia San Leandro</span></a></li>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
{% include "head.html" with path="." metadata=metadata only %}
|
||||
{% include "head.html" with path="." title=title only %}
|
||||
<link rel="stylesheet" type="text/css" href="index.css"/>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
{% include "head.html" with path=".." metadata=metadata only %}
|
||||
{% include "head.html" with path=".." title=title only %}
|
||||
<link rel="stylesheet" type="text/css" href="../song.css"/>
|
||||
<script async src="../song.js"></script>
|
||||
</head>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
{% include "head.html" with path=".." metadata=metadata only %}
|
||||
{% include "head.html" with path=".." title=title only %}
|
||||
<meta http-equiv="refresh" content="0; url = ../{{ song.url|urlencode }}">
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% include "head.html" with path="." metadata=metadata only %}
|
||||
{% include "head.html" with path="." title=title only %}
|
||||
<link rel="stylesheet" type="text/css" href="song.css"/>
|
||||
<link rel="stylesheet" type="text/css" href="index.css"/>
|
||||
<script async src="song.js"></script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue