still html validation fixes :)
This commit is contained in:
parent
3dcfa34a19
commit
da25f6e999
5 changed files with 13 additions and 10 deletions
|
@ -246,6 +246,14 @@ img {
|
|||
}
|
||||
|
||||
/* top link menu */
|
||||
|
||||
.head {
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.navBar {
|
||||
padding: 0 0 0 0;
|
||||
display: flex;
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
{% include "head.html" %}
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"></div>
|
||||
<section class="layout">
|
||||
<div class="box16">
|
||||
<div class="box-top">
|
||||
|
@ -13,9 +12,9 @@
|
|||
<div class="box-center">
|
||||
<div class="box-inner">
|
||||
|
||||
<header class="header">
|
||||
<header class="header"><div class="head">
|
||||
{% include "header.html" %}
|
||||
</header>
|
||||
</div></header>
|
||||
<main class="main content">
|
||||
{% block content %}
|
||||
{% endblock content %}
|
||||
|
|
|
@ -91,8 +91,4 @@
|
|||
<link rel="stylesheet" href="{{ get_url(path='css/style.css', trailing_slash=false) | safe }}"/>
|
||||
{% endblock css %}
|
||||
<script src="{{ get_url(path='js/script.js', trailing_slash=false) | safe }}" defer></script>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
href="https://unpkg.com/@phosphor-icons/web@2.1.1/src/regular/style.css"
|
||||
/>
|
||||
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@phosphor-icons/web@2.1.1/src/regular/style.css"/>
|
|
@ -4,7 +4,7 @@
|
|||
{% elif section %}
|
||||
{% set current_lang = section.lang %}
|
||||
{% endif %}
|
||||
<div align=center><a href="/"><h1>peachmoon.moe</h1></a></div>
|
||||
<a href="/"><h1>peachmoon.moe</h1></a>
|
||||
{% if config.extra.header_nav %}
|
||||
<nav class="navBar">
|
||||
{% if config.generate_feed %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<ul class="titleList">
|
||||
{% for page in pages %}
|
||||
<li>
|
||||
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
||||
<div clas="head"><a href="{{ page.permalink | safe }}">{{ page.title }}</a></div>
|
||||
<br />
|
||||
{{ page.description }}
|
||||
</li>
|
||||
|
|
Loading…
Add table
Reference in a new issue