Skip to content

Commit f59bdd6

Browse files
committed
22.0 beta
[general] - new global font (+ style changes) - remove multicolor animation from links :( - version tag style changes - other minor changes and fixes [index] - enhance modal flow and styling [webutils] - fix md5 - fix webutils not loading properly on general page [backup] - global projects - added tfg/prácticas [changelog] - remove first newline from commit messages
1 parent 7fcade6 commit f59bdd6

16 files changed

Lines changed: 54 additions & 21 deletions

File tree

31 KB
Binary file not shown.

build-changelog.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ def log(msg)
9494
# bold sections in the commit message (format: "[section]")
9595
commit.message = commit.message.gsub(/\[(.*)\]/, "<strong>\[\\1\]</strong>") unless commit.message.nil?
9696

97+
# if the first line of the commit message is a newline, remove it
98+
commit.message = commit.message.slice(0, 1) == "\n" ? commit.message.slice(1, commit.message.length) : commit.message unless commit.message.nil?
99+
# ↑ esta es de las líneas más incomprensibles que he escrito en mi vida.
100+
97101
commits << commit
98102
end
99103

package.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/content/collections/projects/backup.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ para descargar todos los repositorios, usar el siguiente comando en una terminal
4343
# Contenido
4444
<div id="subjects">
4545

46+
## global
47+
- [notes](https://github.com/miermontoto/notes) *(apuntes de la carrera)*
48+
- [latexTemplate](https://github.com/miermontoto/latexTemplate) *(plantilla para documentos en LaTeX)*
49+
4650
## y1t1
4751
- [Álgebra Lineal](https://github.com/miermontoto/Algebra) *(algunas PAs corregidas + Entregaxp, parciales con solución)*
4852
- [Cálculo](https://github.com/miermontoto/Calculo) *(parcial del año resuelto + otros parciales)*
@@ -92,6 +96,7 @@ para descargar todos los repositorios, usar el siguiente comando en una terminal
9296
- [SI2022-PL41](https://github.com/miermontoto/SI2022-PL41), trabajo en grupo.
9397
- [Sistemas Distribuidos](https://github.com/miermontoto/Distribuidos) *trabajos de PL completos*
9498
- [Sistemas Inteligentes](https://github.com/miermontoto/Inteligentes) **(falta contenido de PL)**
99+
- [Memoria de prácticas](https://github.com/miermontoto/memoria-practicas)
95100

96101
## y4t1
97102
- [Gestión de Tecnologías de la Información](https://github.com/miermontoto/GTI)
@@ -109,6 +114,7 @@ para descargar todos los repositorios, usar el siguiente comando en una terminal
109114
## y4t2
110115
- [Proyectos](https://github.com/miermontoto/Proyectos)
111116
- [Pruebas y Despliegue de Software](https://github.com/miermontoto/Pruebas)
117+
- [Trabajo Fin de Grado](https://github.com/miermontoto/tfg)
112118

113119
</div>
114120

src/content/collections/projects/mier.info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: mier.info
33
desc: my personal portfolio, the very website you are looking at right now.
44
source: https://github.com/miermontoto/mier.info
55
icons: [eleventy, firebase, sass, markdown, nunjucks, js]
6-
links: [{icon: "β", url: "https://mier-f6277--beta-ms6exjco.web.app/", name: "beta"}]
6+
# links: [{icon: "β", url: "https://mier-f6277--beta-ms6exjco.web.app/", name: "beta"}]
77
star: star
88
permalink: /this/
99
redirect_from: [/mier.info/, /self/]

src/content/collections/projects/webutils.njk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ eleventyNavigation:
1111
<div class="carded" id="utils">
1212
{% for util in collections.webutils %}
1313
<div id="{{ util.data.title }}" class="util card">
14+
{% addScript util.fileSlug %}
1415
<h2 class="card-title"><a href="/{{ util.fileSlug }}">{{ util.fileSlug }}</a></h2>
1516
{{ util.templateContent | safe }}
1617
</div>

src/content/collections/webutils/md5.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: md5
33
desc: 'hash string using MD5'
44
redirect_from: /webutils/md5/
5+
permalink: /md5/
56
eleventyNavigation:
67
key: md5
78
---
89

9-
{% addScript 'md5.min' %} {# MD5 function library #}
1010

1111
<input id="md5-input" class="input" type="text" placeholder="string to hash using MD5">
1212
<span id="md5-output" class="output"></span>

src/static/css/_base.sass

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,11 @@
33
font-display: swap
44
src: local('Courier Prime'), url('/assets/fonts/CourierPrime.woff2') format('woff2')
55

6-
$fonts: 'Courier Prime', monospace
6+
@font-face
7+
font-family: 'Berkeley Mono'
8+
font-display: swap
9+
src: local ('Berkeley Mono'), url('/assets/fonts/BerkeleyMonoVariable-Regular.woff2') format('woff2')
10+
11+
$fonts: 'Berkeley Mono', 'Courier Prime', monospace
12+
$classic-fonts: 'Courier Prime', monospace
713
$radius: 10px

src/static/css/app/changelog.sass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
margin: 0.25rem 0
1111

1212
.title
13-
font-weight: bold
13+
font-weight: normal
1414
font-size: 1.75rem
1515

1616
.subtitle

src/static/css/generic.sass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ul, ol
1717
#title
1818
margin: 1em 0 0.6em
1919
font-size: 3em
20-
font-weight: bold
20+
font-weight: normal
2121

2222
#subtitle
2323
font-style: italic

0 commit comments

Comments
 (0)