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