Compare commits
No commits in common. "d29ed58b3844245da8b9ca794a91e62d8dfa6151" and "cafd2720c88e3c38c9d5bec0fc13118ef63761af" have entirely different histories.
d29ed58b38
...
cafd2720c8
|
|
@ -4,7 +4,7 @@ people = [
|
||||||
{ image = "https://vanityruins.neocities.org/8831/8831.gif", name = "vanityruins [en]", link = "https://vanityruins.neocities.org" },
|
{ image = "https://vanityruins.neocities.org/8831/8831.gif", name = "vanityruins [en]", link = "https://vanityruins.neocities.org" },
|
||||||
{ image = "https://saint-images.neocities.org/images/buttons/me-zanarkand.png", name = "saint-images [en]", link = "https://saint-images.neocities.org"},
|
{ image = "https://saint-images.neocities.org/images/buttons/me-zanarkand.png", name = "saint-images [en]", link = "https://saint-images.neocities.org"},
|
||||||
{ image = "cidoku", name = "Cidoku [es] [en]", link = "https://cidoku.net" },
|
{ image = "cidoku", name = "Cidoku [es] [en]", link = "https://cidoku.net" },
|
||||||
{ image = "eyeorb", name = "eyeorb [en]", link = "https://eyeorb.net" }
|
{ iamge = "eyeorb", name = "eyeorb [en]", link = "https://eyeorb.net" }
|
||||||
]
|
]
|
||||||
|
|
||||||
misc = [
|
misc = [
|
||||||
|
|
|
||||||
|
|
@ -84,8 +84,3 @@ es = "aún NO optimizo el sitio para verlo en celulares o pantallas más chicas.
|
||||||
[button-author]
|
[button-author]
|
||||||
en = "button by"
|
en = "button by"
|
||||||
es = "botón hecho por"
|
es = "botón hecho por"
|
||||||
|
|
||||||
# post tags
|
|
||||||
[posts]
|
|
||||||
en = "all"
|
|
||||||
es = "todos"
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,4 @@
|
||||||
<div class="blog-avatar-wrapper">
|
<div class="tag-list-wrapper box">
|
||||||
<img src="/img/blog-avatar.jpg" alt="blog profile picture" id="avatar">
|
|
||||||
</div>
|
|
||||||
<div class="true-content">
|
|
||||||
{{ content | safe }}
|
|
||||||
</div>
|
|
||||||
<div class="tag-list-wrapper">
|
|
||||||
<h2>tags</h2>
|
<h2>tags</h2>
|
||||||
<ul class="tag-list">
|
<ul class="tag-list">
|
||||||
{% for tag, posts in collections | exclude_collections("reviews", "all") %}
|
{% for tag, posts in collections | exclude_collections("reviews", "all") %}
|
||||||
|
|
|
||||||
|
|
@ -8,19 +8,17 @@
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if sidebar %}
|
{% if sidebar %}
|
||||||
<div id="{{ sidebar }}-sidebar" class="sidebar">
|
<div id="feed-sidebar">
|
||||||
{% include sidebar + "_sidebar.njk" %}
|
{% include sidebar + "_sidebar.njk" %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div id="feed">
|
<div id="feed">
|
||||||
{% set current_year = 0 %}
|
<div class="true-content">
|
||||||
|
{{ content | safe }}
|
||||||
|
</div>
|
||||||
{% for post in collections[cycling_tag] | i18n_filter %}
|
{% for post in collections[cycling_tag] | i18n_filter %}
|
||||||
<div class="feed-item">
|
<div class="feed-item">
|
||||||
{% set post_year = post.date | date("yyyy") %}
|
<h2>2025</h2>
|
||||||
{% if post_year != current_year %}
|
|
||||||
<h2 class="year-title">{{ post_year }}</h2>
|
|
||||||
{% set current_year = post_year %}
|
|
||||||
{% endif %}
|
|
||||||
<h3 id="{{ post.data.title | slugify }}" class="post-title">{{ post.data.title }}</h3>
|
<h3 id="{{ post.data.title | slugify }}" class="post-title">{{ post.data.title }}</h3>
|
||||||
<p class="post-date">{{ post.date | date("dd/MM/yyyy") }}</p>
|
<p class="post-date">{{ post.date | date("dd/MM/yyyy") }}</p>
|
||||||
{#<p>Debug: {{ post.date }} -> {{ post.date | date("dd/MM/yyyy") }}</p>#}
|
{#<p>Debug: {{ post.date }} -> {{ post.date | date("dd/MM/yyyy") }}</p>#}
|
||||||
|
|
|
||||||
|
|
@ -210,7 +210,6 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// homepage
|
|
||||||
.welcome-aside-left {
|
.welcome-aside-left {
|
||||||
width: max-content;
|
width: max-content;
|
||||||
|
|
||||||
|
|
@ -326,7 +325,8 @@ body {
|
||||||
h1, h2, h3, h4, h5, h6 { margin: 2px 4px; }
|
h1, h2, h3, h4, h5, h6 { margin: 2px 4px; }
|
||||||
p { margin: 8px 4px; }
|
p { margin: 8px 4px; }
|
||||||
ul {
|
ul {
|
||||||
list-style-image: url(/img/icons/pichu.gif);
|
/* TODO: better list image
|
||||||
|
list-style-image: url(/img/icons/apple.png); */
|
||||||
list-style-type: disc;
|
list-style-type: disc;
|
||||||
li {
|
li {
|
||||||
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
||||||
|
|
@ -340,7 +340,6 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// guestbook
|
|
||||||
.guestbook-wrapper {
|
.guestbook-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 12px 2px 2px 2px;
|
margin: 12px 2px 2px 2px;
|
||||||
|
|
@ -352,57 +351,6 @@ body {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$sm: 10%; // sidebar margin
|
|
||||||
|
|
||||||
// blog index
|
|
||||||
#blog-sidebar {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
width: 240px;
|
|
||||||
|
|
||||||
p, li {
|
|
||||||
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
||||||
font-size: 11px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,h2,h3,h4,h5,h6 {
|
|
||||||
font-size: 16px;
|
|
||||||
text-decoration: none;
|
|
||||||
border-bottom: 1px dashed mp.$border;
|
|
||||||
max-width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.true-content {
|
|
||||||
margin: 6px ($sm - 5%) 6px $sm;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.blog-avatar-wrapper {
|
|
||||||
width: 100%;
|
|
||||||
#avatar {
|
|
||||||
// border: 1px solid mp.$border;
|
|
||||||
display: block;
|
|
||||||
margin: 24px auto 6px auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tag-list-wrapper {
|
|
||||||
width: 100%;
|
|
||||||
margin: 6px ($sm - 5%) 6px $sm;
|
|
||||||
ul {
|
|
||||||
margin: 6px 0px;
|
|
||||||
li {
|
|
||||||
list-style-image: url("/img/icons/kittycat.gif");
|
|
||||||
padding: 2px 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#feed {
|
|
||||||
margin: 12px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,6 @@
|
||||||
title: my test post
|
title: my test post
|
||||||
layout: post
|
layout: post
|
||||||
tags: test
|
tags: test
|
||||||
|
|
||||||
description: |
|
|
||||||
welcome to my website!!!
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# wait
|
# wait
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,4 @@
|
||||||
---
|
---
|
||||||
title: blog
|
title: blog
|
||||||
layout: recent_feed
|
layout: under_construction
|
||||||
cycling_tag: posts
|
|
||||||
sidebar: blog
|
|
||||||
flight:
|
|
||||||
img: /img/gifcities/mimi.gif
|
|
||||||
url: /
|
|
||||||
---
|
---
|
||||||
# blog
|
|
||||||
|
|
||||||
welcome to my blog. at this stage of my website you will most likely find scarce postings but i try my best!!
|
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,6 @@ title: mi post de prueba
|
||||||
slug_override: post inaugural
|
slug_override: post inaugural
|
||||||
layout: post
|
layout: post
|
||||||
tags: test
|
tags: test
|
||||||
|
|
||||||
description: |
|
|
||||||
bienvenid@ a mi sitio!!
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# esperad
|
# esperad
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,4 @@
|
||||||
---
|
---
|
||||||
title: blog
|
title: blog
|
||||||
layout: recent_feed
|
layout: under_construction
|
||||||
cycling_tag: posts
|
|
||||||
sidebar: blog
|
|
||||||
---
|
---
|
||||||
# blog
|
|
||||||
|
|
||||||
bienvenido a mi blog <3 ahora mismo probablemente no tenga mucho publicado pero con el tiempo se acumulará...
|
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 953 B |
|
Before Width: | Height: | Size: 999 B |
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 288 B |
|
Before Width: | Height: | Size: 991 B |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 982 B |
BIN
img/icons/tv.gif
|
Before Width: | Height: | Size: 127 B |