add more sections

This commit is contained in:
kalanggam 2023-10-19 00:33:51 -05:00
parent a3fbd984f7
commit 3044e908ba
10 changed files with 115 additions and 6 deletions

View file

@ -1,5 +1,13 @@
const { DateTime } = require("luxon");
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/style.css");
eleventyConfig.addFilter("postDate", (dateObj) => {
return DateTime.fromJSDate(dateObj).toFormat("y'-'LL'-'dd' at 'T");
});
eleventyConfig.addPassthroughCopy("./src/css");
eleventyConfig.addPassthroughCopy("./src/img");
eleventyConfig.addWatchTarget("./src/css");
return {
dir: {

3
package-lock.json generated
View file

@ -9,7 +9,8 @@
"version": "1.0.0",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1"
"@11ty/eleventy": "^2.0.1",
"luxon": "^3.4.3"
}
},
"node_modules/@11ty/dependency-tree": {

View file

@ -11,6 +11,7 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1"
"@11ty/eleventy": "^2.0.1",
"luxon": "^3.4.3"
}
}

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ title }}</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/css/global.css">
</head>
<body>
<header>

4
src/ceb/index.md Normal file
View file

@ -0,0 +1,4 @@
---
title: Cebuano
layout: base.njk
---

View file

@ -1,6 +1,32 @@
---
title: Hello World
title: gils.nexus
layout: base.njk
date: Last Modified
---
Hello Gil!
hello! my name is gil and this is my site. pronouns are he/they. i write and
tinker with software/hardware. i don't have much to put here except
links (for now).
---
## Here
[Cebuano](/ceb/)
[Poetry](/poetry/)
---
## Links
[hol.ogra.ph](https://hol.ogra.ph/@gil) &mdash; federated
microblogging (i'm a co-admin here!)
[pixelfed.social](https://pixelfed.social/kalanggam) &mdash;
federated photo and video sharing
[beehaw](https://beehaw.org/u/kalanggam) &mdash; federated link
aggregator/discussions
[bookwyrm.social](https://bookwyrm.social/user/kalanggam) &mdash; federated book reviews
---
Made with [11ty](https://www.11ty.dev/). _Last updated on {{ page.date | postDate }}_

52
src/poetry/hey-girl.md Normal file
View file

@ -0,0 +1,52 @@
---
title: Hey Girl
date: Last Modified
pubDate: 2023-05-18t20:12:32-05:00
---
Hey girl,
you remind me
that I have two hearts,
two kasingkasings whose beats sing
for you, for me, for us, for we,
brown girls and brown queers, who rise
like the sun after gentle rains and eastward winds.
Hey girl,
you remind me
of the south plains sky,
stretched wide over the lands,
colonized, where we rebelliously learned
to thrive, to live, to flourish, to give
to all societys cast aside, all who have lived and died
and will live again on the breath of justice.
Hey girl,
you remind me
that we have high hopes,
manifested destinies and techniques
to achieve all the dreams, at first unimaginable
by our ancestors, by our lovers, by our oppressors, by our detractors,
culturally rich and getting richer, immeasurable
like the grains of rice from the eons harvested over paddies.
Hey girl,
you remind me
that our words are more powerful
than any fist, any sword, any bomb, any gun—
that our hearts beat louder than any boots, drums, or speakers.
You remind me that our spirits fight harder
for love and for liberation, for life and for nation.
Hey girl,
you reminded me
to stay connected even over sea,
to practice my meditations and see the unseen.
You reminded me to fight
until we are all free.
[&larr; All poetry](/poetry/)
Published {{ pubDate | postDate }}
*Last modified {{ page.date | postDate }}*

12
src/poetry/index.md Normal file
View file

@ -0,0 +1,12 @@
---
title: Poetry
layout: base.njk
permalink: /poetry/index.html
override:tags: []
---
<ul>
{%- for poem in collections.poems -%}
<li><a href="{{ poem.url }}">{{ poem.data.title }}</a></li>
{%- endfor -%}
</ul>

5
src/poetry/poetry.json Normal file
View file

@ -0,0 +1,5 @@
{
"layout": "base.njk",
"permalink": "/poem/{{ page.fileSlug }}/",
"tags": "poems"
}