This commit is contained in:
parent
5ece9cd3f9
commit
43ea246b56
|
@ -1,5 +1,5 @@
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span class="footer_item"><a href="/LICENSE">© {{ site.time | date: "%Y" }} Sergio Álvarez</a></span>
|
<span class="footer_item"><a href="/LICENSE">© {{ site.time | date: "%Y" }} Sergio Álvarez</a> ▁ <a href="https://sergio.am/code/sergio.am">Código fuente y versionado</a></span>
|
||||||
</footer>
|
</footer>
|
||||||
<script src="/assets/js/main.js" defer="defer"></script>
|
<script src="/assets/js/main.js" defer="defer"></script>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: default
|
||||||
home: true
|
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 -%}
|
{%- for post in site.posts limit: site.number_of_posts -%}
|
||||||
<article class="post-item">
|
<article class="post-item">
|
||||||
<span class="post-item-date">{{ post.date | date: "%d %b %Y" }}</span>
|
<span class="post-item-date">{{ post.date | date: "%d %b %Y" }}</span>
|
||||||
|
|
|
@ -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.
|
|
|
@ -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.
|
|
|
@ -234,7 +234,7 @@ h6 > a {
|
||||||
// Link
|
// Link
|
||||||
a {
|
a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration-color: $smoke;
|
text-decoration: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $text-link-blue;
|
color: $text-link-blue;
|
||||||
|
|
Loading…
Reference in New Issue