Indent with 2 spaces instead of 4

This commit is contained in:
Gil 2025-05-16 18:21:47 -05:00
parent e501211a87
commit d4d5dc0b81
15 changed files with 191 additions and 186 deletions

View file

@ -1,12 +1,12 @@
[ [
{ {
"label": "Gil dot Ink", "label": "Gil dot Ink",
"image": "stamp-gildotink.gif", "image": "stamp-gildotink.gif",
"link": "https://gil.ink/" "link": "https://gil.ink/"
}, },
{ {
"label": "Rust Red River", "label": "Rust Red River",
"image": "stamp-rustredriver.gif", "image": "stamp-rustredriver.gif",
"link": "https://rustredriver.com/" "link": "https://rustredriver.com/"
} }
] ]

View file

@ -1,38 +1,38 @@
[ [
{ {
"label": "Microblogging", "label": "Microblogging",
"link": "https://hol.ogra.ph/@gil", "link": "https://hol.ogra.ph/@gil",
"handle": "@gil@hol.ogra.ph" "handle": "@gil@hol.ogra.ph"
}, },
{ {
"label": "Forgejo", "label": "Forgejo",
"link": "https://ide.ogra.ph/gil", "link": "https://ide.ogra.ph/gil",
"handle": "ide.ogra.ph/gil" "handle": "ide.ogra.ph/gil"
}, },
{ {
"label": "Matrix", "label": "Matrix",
"link": "https://matrix.to/#/@kalanggam:matrix.org", "link": "https://matrix.to/#/@kalanggam:matrix.org",
"handle": "kalanggam:matrix.org" "handle": "kalanggam:matrix.org"
}, },
{ {
"label": "Pixelfed", "label": "Pixelfed",
"link": "https://pixelfed.social/kalanggam", "link": "https://pixelfed.social/kalanggam",
"handle": "pixelfed.social/kalanggam" "handle": "pixelfed.social/kalanggam"
}, },
{ {
"label": "Bookwyrm", "label": "Bookwyrm",
"link": "https://bookwyrm.social/user/kalanggam", "link": "https://bookwyrm.social/user/kalanggam",
"handle": "bookwyrm.social/user/kalanggam" "handle": "bookwyrm.social/user/kalanggam"
}, },
{ {
"label": "Bluesky", "label": "Bluesky",
"link": "https://bsky.app/profile/kalanggam.bsky.social", "link": "https://bsky.app/profile/kalanggam.bsky.social",
"handle": "kalanggam.bsky.social" "handle": "kalanggam.bsky.social"
}, },
{ {
"label": "Newsletter", "label": "Newsletter",
"link": "https://gilosophies.ghost.io/", "link": "https://gilosophies.ghost.io/",
"handle": "gilosophies.ghost.io", "handle": "gilosophies.ghost.io",
"note": "(forthcoming)" "note": "(forthcoming)"
} }
] ]

View file

@ -1,10 +1,10 @@
[ [
{ {
"date": "2025-04-29", "date": "2025-04-29",
"content": "Oh, it's getting a little more stylish in here..." "content": "Oh, it's getting a little more stylish in here..."
}, },
{ {
"date": "2025-02-20", "date": "2025-02-20",
"content": "Hello world!" "content": "Hello world!"
} }
] ]

View file

@ -1,7 +1,7 @@
<footer class="footer"> <footer class="footer">
<p>Made by me with <p>Made by me with
<a href="https://www.11ty.dev/">Eleventy</a> <a href="https://www.11ty.dev/">Eleventy</a>
</p> </p>
{% include 'theme-switcher.njk' %} {% include 'theme-switcher.njk' %}
<a href="#top" id="jump-top">Jump to top</a> <a href="#top" id="jump-top">Jump to top</a>
</footer> </footer>

View file

@ -1,15 +1,12 @@
{% set navPages = collections.all | eleventyNavigation %} {% set navPages = collections.all | eleventyNavigation %}
<nav class="nav"> <nav class="nav">
<ul class="navbar"> <ul class="navbar">
{% for entry in navPages %} {% for entry in navPages %}
<li> <li>
<a <a class="navlink {% if entry.url == page.url %}navlink--current{% endif %}" href="{{ entry.url }}" {% if entry.url == page.url %} aria-current="page" {% endif %}>
class="navlink {% if entry.url == page.url %}navlink--current{% endif %}" {{ entry.title }}
href="{{ entry.url }}" </a>
{% if entry.url == page.url %}aria-current="page"{% endif %}> </li>
{{ entry.title }} {% endfor %}
</a> </ul>
</li>
{% endfor %}
</ul>
</nav> </nav>

View file

@ -1,5 +1,5 @@
<p> <p>
<strong>My neighborhood</strong> <strong>My neighborhood</strong>
• Check out my neighbors on the indie web! • Check out my neighbors on the indie web!
</p> </p>
{% include 'snippets/neighbors.njk' %} {% include 'snippets/neighbors.njk' %}

View file

@ -1,11 +1,11 @@
<p> <p>
{% for neighbor in neighbors -%} {% for neighbor in neighbors -%}
{%- if neighbor.link -%} {%- if neighbor.link -%}
<a href="{{ neighbor.link }}" rel="noreferrer nofollow noopener external" target="_blank"> <a href="{{ neighbor.link }}" rel="noreferrer nofollow noopener external" target="_blank">
{%- endif -%} {%- endif -%}
<img src="/assets/img/{{ neighbor.image }}" alt="{{ neighbor.label }}"/> <img src="/assets/img/{{ neighbor.image }}" alt="{{ neighbor.label }}"/>
{%- if neighbor.link -%} {%- if neighbor.link -%}
</a> </a>
{%- endif -%} {%- endif -%}
{%- endfor %} {%- endfor %}
</p> </p>

View file

@ -1,8 +1,13 @@
<dl>{% for social in socials -%} <dl>
{% for social in socials -%}
<dt> <dt>
<em>{{ social.label }}</em> <em>{{ social.label }}</em>
</dt> </dt>
<dd> <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> </dd>
{%- endfor %}</dl> {%- endfor %}
</dl>

View file

@ -1,6 +1,6 @@
<p> <p>
{% for update in updates %} {% for update in updates %}
<time class="muted" datetime="{{ update.date }}">[{{ update.date }}]</time> <time class="muted" datetime="{{ update.date }}">[{{ update.date }}]</time>
{{ update.content | safe }}<br/> {{ update.content | safe }}<br/>
{% endfor %} {% endfor %}
</p> </p>

View file

@ -1,6 +1,6 @@
<div class="theme-switcher"> <div class="theme-switcher">
Theme: Theme:
<button data-theme="system" aria-pressed="true">System</button> <button data-theme="system" aria-pressed="true">System</button>
<button data-theme="light" aria-pressed="false">Light</button> <button data-theme="light" aria-pressed="false">Light</button>
<button data-theme="dark" aria-pressed="false">Dark</button> <button data-theme="dark" aria-pressed="false">Dark</button>
</div> </div>

View file

@ -3,41 +3,47 @@ layout: base.njk
--- ---
<main class="page--about"> <main class="page--about">
<main class="main-content">{{ content | safe }}</main> <main class="main-content">{{ content | safe }}</main>
<aside class="idcard"> <aside class="idcard">
<header class="idcard__header">Identification card</header> <header class="idcard__header">Identification card</header>
<div class="idcard__picture"></div> <div class="idcard__picture"></div>
<main class="idcard__bio"> <main class="idcard__bio">
<p class="idcard__line--wide monospace">GI0755592238</p> <p class="idcard__line--wide monospace">GI0755592238</p>
<p class="idcard__line--wide">Gil</p> <p class="idcard__line--wide">Gil</p>
<p class="idcard__line">26</p> <p class="idcard__line">26</p>
<p class="idcard__line">he/they</p> <p class="idcard__line">he/they</p>
<p class="idcard__line">Cancer</p> <p class="idcard__line">Cancer</p>
<p class="idcard__line--wide monospace">07/15/2030</p> <p class="idcard__line--wide monospace">07/15/2030</p>
<p class="idcard__line--wide monospace">05/10/2025</p> <p class="idcard__line--wide monospace">05/10/2025</p>
</main> </main>
</aside> </aside>
<section class="interests"> <section class="interests">
<header><h2>Interests</h2></header> <header>
<ul> <h2>Interests</h2>
<li>Writing - poetry, prose, essays, etc.</li> </header>
<li>Music</li> <ul>
<li>Gaming</li> <li>Writing - poetry, prose, essays, etc.</li>
<li>Game development</li> <li>Music</li>
<li>Languages</li> <li>Gaming</li>
<li>Worldbuilding</li> <li>Game development</li>
</ul> <li>Languages</li>
</section> <li>Worldbuilding</li>
<section class="funfacts"> </ul>
<header><h2>Fun facts</h2></header> </section>
<ul> <section class="funfacts">
<li>Filipino American</li> <header>
<li>Texan</li> <h2>Fun facts</h2>
<li>Languages: English (native), German, Cebuano, and Tagalog</li> </header>
</ul> <ul>
</section> <li>Filipino American</li>
<aside class="social"> <li>Texan</li>
<header><h2>Social links</h2></header> <li>Languages: English (native), German, Cebuano, and Tagalog</li>
{% include 'snippets/socials.njk' %} </ul>
</aside> </section>
<aside class="social">
<header>
<h2>Social links</h2>
</header>
{% include 'snippets/socials.njk' %}
</aside>
</main> </main>

View file

@ -1,19 +1,18 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
{% include 'head/meta.njk' %} {% include 'head/meta.njk' %} <link rel="stylesheet" href="/assets/css/reset.css" type="text/css" media="screen" title="no title">
<link rel="stylesheet" href="/assets/css/reset.css" type="text/css" media="screen" title="no title"> {% include 'head/default-styles.njk' %}
{% include 'head/default-styles.njk' %} </head>
</head> <body>
<body> <div class="site">
<div class="site"> <a href="#page" id="skip-navigation">Skip navigation</a>
<a href="#page" id="skip-navigation">Skip navigation</a> <header class="header">
<header class="header"> <h1 id="top" tabindex="-1">Gil•INK</h1>
<h1 id="top" tabindex="-1">Gil•INK</h1> </header>
</header> {% include 'nav.njk' %}
{% include 'nav.njk' %} {{ content | safe }}
{{ content | safe }} {% include 'footer.njk' %}
{% include 'footer.njk' %} </div>
</div> </body>
</body>
</html> </html>

View file

@ -1,12 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
{% include 'head/meta.njk' %} {% include 'head/meta.njk' %}
{% include 'head/reset.njk' %} {% include 'head/reset.njk' %}
</head> </head>
<body> <body>
<div class="site"> <div class="site">
{{ content | safe }} {{ content | safe }}
</div> </div>
</body> </body>
</html> </html>

View file

@ -3,26 +3,25 @@ layout: base.njk
--- ---
<div class="page--home"> <div class="page--home">
<main class="home__main">{{ content | safe }}</main> <main class="home__main">{{ content | safe }}</main>
<aside class="home__social"> <aside class="home__social">
{% include 'snippets/socials.njk' %} {% include 'snippets/socials.njk' %}
</aside> </aside>
<aside class="home__updates"> <aside class="home__updates">
<h2>Updates</h2> <h2>Updates</h2>
{% include 'snippets/updates.njk' %} {% include 'snippets/updates.njk' %}
</aside> </aside>
<aside class="home__badges"> <aside class="home__badges">
{% include 'snippets/badges.njk' %} {% include 'snippets/badges.njk' %}
</aside> </aside>
</div> </div>
<footer> <footer>
<p> <p>
<strong>Created</strong> <strong>Created</strong>
<time datetime="{{ page.date | formatDate }}">{{ page.date | formatDate }}</time> <time datetime="{{ page.date | formatDate }}">{{ page.date | formatDate }}</time>
{% if lastmod %}• {% if lastmod %}•
<strong>Last modified</strong> <strong>Last modified</strong>
<time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time> <time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time>
{% endif %} {% endif %}
</p> </p>
</footer> </footer>

View file

@ -3,14 +3,13 @@ layout: base.njk
--- ---
<main class="box page page-single">{{ content | safe }}</main> <main class="box page page-single">{{ content | safe }}</main>
<footer class="box page-footer"> <footer class="box page-footer">
<p> <p>
<strong>Created</strong> <strong>Created</strong>
<time datetime="{{ page.date | formatDate }}">{{ page.date | formatDate }}</time> <time datetime="{{ page.date | formatDate }}">{{ page.date | formatDate }}</time>
{% if lastmod %}• {% if lastmod %}•
<strong>Last modified</strong> <strong>Last modified</strong>
<time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time> <time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time>
{% endif %} {% endif %}
</p> </p>
</footer> </footer>