some src/ directory files, finally

master
Nexan 2024-01-31 10:34:34 -06:00
parent 204a1b46ca
commit 49f64ef17b
5 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{
"name": "Change Me",
"url": "",
"title": "Change Me",
"description": "Welcome to my blog",
"github": "https://git.nexxy.co",
"twitter": "",
"linkedin": ""
}

View File

@ -0,0 +1,14 @@
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> {{ title }}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="author" href="humans.txt" />
<link href="/assets/styles/style.css" rel="stylesheet" />
</head>
<body>
{{ content }}
</body>
</html>

4
src/index.md 100644
View File

@ -0,0 +1,4 @@
---
layout: default.liquid
---
hello, world

26
src/manifest.json 100644
View File

@ -0,0 +1,26 @@
{
"name": "Change Me",
"short_name": "Change Me",
"icons": [
{
"src": "/assets/img/favicon/favicon-32x32.png",
"sizes": "32x32",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/assets/img/favicon/favicon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/assets/img/favicon/favicon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#000",
"background_color": "#fff",
"display": "standalone",
"start_url": ""
}

13
src/sitemap.md 100644
View File

@ -0,0 +1,13 @@
---
permalink: /sitemap.xml
eleventyExcludeFromCollections: true
---
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in collections.all %}
<url>
<loc>{{ site.url }}{{ page.url | url }}</loc>
<lastmod>{{ page.date }}</lastmod>
<changefreq>{{page.data.changeFreq}}</changefreq>
</url>
{% endfor %}
</urlset>