This commit is contained in:
Sergio Álvarez 2022-05-11 19:57:29 +02:00
parent 5ece9cd3f9
commit 43ea246b56
No known key found for this signature in database
GPG Key ID: 622780889DFDBDA5
5 changed files with 3 additions and 45 deletions

View File

@ -1,5 +1,5 @@
<footer class="footer">
<span class="footer_item"><a href="/LICENSE">&copy; {{ site.time | date: "%Y" }} Sergio Álvarez</a></span>
<span class="footer_item"><a href="/LICENSE">&copy; {{ site.time | date: "%Y" }} Sergio Álvarez</a><a href="https://sergio.am/code/sergio.am">Código fuente y versionado</a></span>
</footer>
<script src="/assets/js/main.js" defer="defer"></script>

View File

@ -3,7 +3,7 @@ layout: default
home: true
---
<h3 class="posts-item-note" aria-label="Recent Posts">Recent Posts</h3>
<h3 class="posts-item-note" aria-label="Recent Posts">Recent Posts</h3>
{%- for post in site.posts limit: site.number_of_posts -%}
<article class="post-item">
<span class="post-item-date">{{ post.date | date: "%d %b %Y" }}</span>

View File

@ -1,21 +0,0 @@
---
layout: post
title: "CI/CD con Gitea + Drone"
---
Primer post, sin mucho que contar para variar. Al menos habrá un bonito _commit_ y muchas cosas por limpiar.
La chuleta para hacer andar esto es la siguiente:
```shell
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" jekyll/jekyll jekyll build
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" -p 4000:4000 jekyll/jekyll jekyll serve
```
O bien, si ya está _buildeado_:
```shell
cd _site
python3 -m http.server 4000
```
Y acceder a <http://localhost:4000>. Así de simple por ahora.

View File

@ -1,21 +0,0 @@
---
layout: post
title: "Conectividad IPv6 sobre túnel WireGuard y OpenWRT"
---
Primer post, sin mucho que contar para variar. Al menos habrá un bonito _commit_ y muchas cosas por limpiar.
La chuleta para hacer andar esto es la siguiente:
```shell
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" jekyll/jekyll jekyll build
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" -p 4000:4000 jekyll/jekyll jekyll serve
```
O bien, si ya está _buildeado_:
```shell
cd _site
python3 -m http.server 4000
```
Y acceder a <http://localhost:4000>. Así de simple por ahora.

View File

@ -234,7 +234,7 @@ h6 > a {
// Link
a {
color: inherit;
text-decoration-color: $smoke;
text-decoration: none;
&:hover {
color: $text-link-blue;