Skip to content
Snippets Groups Projects
Unverified Commit bccd3bed authored by kogeletey's avatar kogeletey
Browse files

sass: change font-sixe and padding footer. templates: slightly corrected after formatting

parent e203ae8d
No related branches found
Tags v0.2.4
No related merge requests found
footer {
width: 100%;
position: relative;
bottom: 0;
padding-top: 0.25rem;
padding-bottom: 0.25rem;
background-color: var(--white);
border-top: 1px solid;
border-color: $dark1;
font-size: 16px;
color: var(--black);
ul {
display: flex;
......
{% extends 'base.html' %} {% block styles %} {{
macros::styles(file='section.css') }} {% endblock styles %} {% block htmltitle
%} 404 Page Not Found {% endblock htmltitle %} {% block header %}
{{macros::header(current_url="/")}} {% endblock header %} {% block content %}
{% extends 'base.html' %}
{% block styles %} {{macros::styles(file='section.css') }} {% endblock styles %}
{% block htmltitle%} 404 Page Not Found {% endblock htmltitle %}
{# set specifically so that there are no problems #}
{% block header %} {{macros::header(current_url="/")}} {% endblock header %}
{% block content %}
<div class="error">
<h1>404</h1>
<h2>Page Not Found</h2>
......
{% extends "base.html" %} {% block styles %} {{ macros::styles(file='page.css')
}} {% endblock styles %} {% block htmltitle %} {{ page.title }} {% endblock
htmltitle %} {% block content %}
{% extends "base.html" %}
{# import styles for page #}
{% block styles %} {{ macros::styles(file='page.css')}} {% endblock styles %}
{% block htmltitle %} {{ page.title }} {% endblock htmltitle %}
{% block content %}
<main>
<div class="show-bar">
<a href="#sidebar" class="sidebar" role="button" x-data="{ open:false}">
......@@ -37,11 +39,14 @@ htmltitle %} {% block content %}
<h1 class="title">{{ page.title }}</h1>
{% block sections %}
<ul class="sections">
{{ page_macros::relative_path() }} {{ page_macros::word_count() }} {{
page_macros::reading_time() }} {{ page_macros::date() }} {{
page_macros::taxonomies_authors() }}
{{ page_macros::relative_path() }}
{{ page_macros::word_count() }}
{{ page_macros::reading_time() }}
{{ page_macros::date() }}
{{ page_macros::taxonomies_authors() }}
</ul>
{% endblock sections %} {{ page.content | safe }}
{% endblock sections %}
{{ page.content | safe }}
</article>
{{ page_macros::toc(page=page) }}
</main>
......
{% extends "base.html" %} {% block styles %} {{
macros::styles(file='section.css') }} {% endblock styles %} {% block htmltitle
%} {{ macros::title_or_last(component=section) }} - {{ config.title }} {%
endblock htmltitle %} {% block title %} {{
macros::title_or_last(component=section) }} {% endblock title %} {% block math
%} {{ macros::math() }} {% endblock math %} {% block content %}
{% extends "base.html" %}
{% block styles %} {{macros::styles(file='section.css') }} {% endblock styles %}
{% block htmltitle%} {{ macros::title_or_last(component=section) }} - {{ config.title }} {%endblock htmltitle %}
{% block title %} {{macros::title_or_last(component=section) }} {% endblock title %}
{% block math%} {{ macros::math() }} {% endblock math %}
{% block content %}
<section>
{% for page in section.pages %}
<a href="{{ page.permalink }}">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment