Remove unneeded slash
This commit is contained in:
parent
d32cb7a5c2
commit
45879483b0
5 changed files with 10 additions and 10 deletions
|
@ -7,7 +7,7 @@
|
|||
<h1>Page not found!</h1>
|
||||
|
||||
<img class="mb-5 max-h-[50vh]"
|
||||
src="{{ get_url(path='images/404/bot.svg') | safe }}" />
|
||||
src="{{ get_url(path='images/404/bot.svg') | safe }}">
|
||||
|
||||
<div class="flex justify-center">{{ macros::btn(link=get_url(path='/') , text="Zurück zur Startseite") }}</div>
|
||||
</div>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="grid grid-cols-1 gap-y-4 gap-x-8 items-center mb-5 lg:grid-cols-2">
|
||||
{% set image = resize_image(path=page.assets | first, width=600, height=600, op="fill") %}
|
||||
<img src="{{ image.url }}"
|
||||
class="object-cover justify-self-center rounded drop-shadow" />
|
||||
class="object-cover justify-self-center rounded drop-shadow">
|
||||
|
||||
<div class="divide-y">
|
||||
{{ page.content | safe }}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>
|
||||
{%- block title -%}
|
||||
|
@ -21,10 +21,10 @@
|
|||
|
||||
<link rel="icon"
|
||||
type="image/x-icon"
|
||||
href="{{ get_url(path='images/logo.svg') | safe }}" />
|
||||
href="{{ get_url(path='images/logo.svg') | safe }}">
|
||||
|
||||
<link href="{{ get_url(path='main.css') | safe }}?v={{ now(timestamp=true) }}"
|
||||
rel="stylesheet" />
|
||||
rel="stylesheet">
|
||||
|
||||
{% block styles %}{% endblock %}
|
||||
</head>
|
||||
|
@ -47,7 +47,7 @@
|
|||
<a class="p-0.5 transition duration-500 hover:scale-110"
|
||||
href="{{ get_url(path='/') | safe }}">
|
||||
<img class="object-contain w-16 h-16 rounded"
|
||||
src="{{ get_url(path='images/logo.svg') | safe }}" />
|
||||
src="{{ get_url(path='images/logo.svg') | safe }}">
|
||||
</a>
|
||||
|
||||
<nav class="flex gap-x-3 items-center sm:gap-x-4">
|
||||
|
|
|
@ -4,14 +4,14 @@
|
|||
|
||||
{% block styles %}
|
||||
<link rel="stylesheet"
|
||||
href="{{ get_url(path='leaflet/leaflet.css') | safe }}?v={{ now(timestamp=true) }}" />
|
||||
href="{{ get_url(path='leaflet/leaflet.css') | safe }}?v={{ now(timestamp=true) }}">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="grid grid-cols-1 gap-y-4 gap-x-6 items-center mb-5 md:grid-cols-2">
|
||||
{% set image = resize_image(path=config.extra.portrait_path, height=500, op="fit_height") %}
|
||||
<img src="{{ image.url }}"
|
||||
class="object-contain justify-self-center rounded drop-shadow" />
|
||||
class="object-contain justify-self-center rounded drop-shadow">
|
||||
|
||||
{{ section.content | safe }}
|
||||
</div>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
{% set image_path = dir ~ image_filename %}
|
||||
{% set image = resize_image(path=image_path, width=400, height=400, op="fill") %}
|
||||
<img src="{{ image.url }}"
|
||||
class="object-cover justify-self-center rounded drop-shadow" />
|
||||
class="object-cover justify-self-center rounded drop-shadow">
|
||||
|
||||
<div>
|
||||
<h3>{{ name }}</h3>
|
||||
|
|
Loading…
Reference in a new issue