Indent with 2 spaces instead of 4
This commit is contained in:
parent
e501211a87
commit
d4d5dc0b81
|
@ -3,10 +3,7 @@
|
|||
<ul class="navbar">
|
||||
{% for entry in navPages %}
|
||||
<li>
|
||||
<a
|
||||
class="navlink {% if entry.url == page.url %}navlink--current{% endif %}"
|
||||
href="{{ entry.url }}"
|
||||
{% if entry.url == page.url %}aria-current="page"{% endif %}>
|
||||
<a class="navlink {% if entry.url == page.url %}navlink--current{% endif %}" href="{{ entry.url }}" {% if entry.url == page.url %} aria-current="page" {% endif %}>
|
||||
{{ entry.title }}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
<dl>{% for social in socials -%}
|
||||
<dl>
|
||||
{% for social in socials -%}
|
||||
<dt>
|
||||
<em>{{ social.label }}</em>
|
||||
</dt>
|
||||
<dd>
|
||||
<a href="{{ social.link }}" rel="me">{{ social.handle }}</a>{% if social.note %} <em>{{ social.note }}</em>{% endif %}
|
||||
<a href="{{ social.link }}" rel="me">{{ social.handle }}</a>
|
||||
{% if social.note %}
|
||||
<em>{{ social.note }}</em>
|
||||
{% endif %}
|
||||
</dd>
|
||||
{%- endfor %}</dl>
|
||||
{%- endfor %}
|
||||
</dl>
|
|
@ -18,7 +18,9 @@ layout: base.njk
|
|||
</main>
|
||||
</aside>
|
||||
<section class="interests">
|
||||
<header><h2>Interests</h2></header>
|
||||
<header>
|
||||
<h2>Interests</h2>
|
||||
</header>
|
||||
<ul>
|
||||
<li>Writing - poetry, prose, essays, etc.</li>
|
||||
<li>Music</li>
|
||||
|
@ -29,7 +31,9 @@ layout: base.njk
|
|||
</ul>
|
||||
</section>
|
||||
<section class="funfacts">
|
||||
<header><h2>Fun facts</h2></header>
|
||||
<header>
|
||||
<h2>Fun facts</h2>
|
||||
</header>
|
||||
<ul>
|
||||
<li>Filipino American</li>
|
||||
<li>Texan</li>
|
||||
|
@ -37,7 +41,9 @@ layout: base.njk
|
|||
</ul>
|
||||
</section>
|
||||
<aside class="social">
|
||||
<header><h2>Social links</h2></header>
|
||||
<header>
|
||||
<h2>Social links</h2>
|
||||
</header>
|
||||
{% include 'snippets/socials.njk' %}
|
||||
</aside>
|
||||
</main>
|
|
@ -1,8 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% include 'head/meta.njk' %}
|
||||
<link rel="stylesheet" href="/assets/css/reset.css" type="text/css" media="screen" title="no title">
|
||||
{% include 'head/meta.njk' %} <link rel="stylesheet" href="/assets/css/reset.css" type="text/css" media="screen" title="no title">
|
||||
{% include 'head/default-styles.njk' %}
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -15,7 +15,6 @@ layout: base.njk
|
|||
{% include 'snippets/badges.njk' %}
|
||||
</aside>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
<strong>Created</strong>
|
||||
|
|
|
@ -3,7 +3,6 @@ layout: base.njk
|
|||
---
|
||||
|
||||
<main class="box page page-single">{{ content | safe }}</main>
|
||||
|
||||
<footer class="box page-footer">
|
||||
<p>
|
||||
<strong>Created</strong>
|
||||
|
|
Loading…
Reference in a new issue