pedf
/
fakulta-online
Archived
1
0
Fork 0

Základ šablony pro stránky

master
Emil Miler 4 years ago
parent ea90906fe9
commit 9feac22b6a

@ -7,7 +7,7 @@
<link rel="stylesheet" href="/style.css" type="text/css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body{% if section.permalink == config.base_url %} class="index"{% endif %}>
<body{% if section.permalink and section.permalink == config.base_url %} class="index"{% endif %}>
<nav id="nav">navigace</nav>
<header>
<img src="/logo.png" alt="Logo">

@ -0,0 +1,6 @@
{% extends "index.html" %}
{% block content %}
<h2>{{ page.title }}</h2>
{{ page.content | safe }}
{% endblock %}