Skip to content

Commit a4fc4f5

Browse files
committed
17.0 beta 2
- better base template - links as json - enhance webutils - marquee strings in data json - minor changes
1 parent c715091 commit a4fc4f5

19 files changed

Lines changed: 83 additions & 63 deletions

File tree

.eleventy.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ module.exports = function (eleventyConfig) {
55

66
eleventyConfig.addPassthroughCopy("./src/static/js/**");
77
eleventyConfig.addPassthroughCopy("./assets/**");
8-
8+
eleventyConfig.addPassthroughCopy("**.data.json");
9+
eleventyConfig.addGlobalData('repo', async () => fetch('https://api.github.com/repos/11ty/eleventy'));
10+
eleventyConfig.setDataFileSuffixes([".data", ""]);
911
eleventyConfig.setServerOptions({
1012
watch: ["_site/static/**"]
1113
});
@@ -18,6 +20,10 @@ module.exports = function (eleventyConfig) {
1820
return `<link rel="stylesheet" href="/static/css/app/${filename}.css">`;
1921
});
2022

23+
eleventyConfig.addShortcode("keywords", function() {
24+
return `<meta name="keywords" content="${require('./package.json').keywords.join(', ')}">`;
25+
});
26+
2127
eleventyConfig.addShortcode("version", function() {
2228
let json = require('./package.json');
2329
let version = json.version;

package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/content/collections/experience/grado.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ period: 2020-2024 (expected)
55
logo: 'epi'
66
---
77

8-
**grades:** 3.0 GPA, 12 honors
8+
**grades:** 3.0 GPA, <b style="color: gold;"><i>12 honors</i></b>
99

1010
see all subjects and content in my [backup](https://mier.info/backup).
1111

@@ -19,3 +19,4 @@ some relevant projects and assignments:
1919
- [network and binary analysis in Assembly and C](https://github.com/miermontoto/HackingForce).
2020
- [RPC, MOM and consensus/sync algorithms in C](https://github.com/miermontoto/Distribuidos/tree/main/PL/entregas/entrega1).
2121
- data analysis and manipulation in [R](https://github.com/miermontoto/Estadistica/tree/main/PL) and [MATLAB](https://github.com/miermontoto/Computacion/tree/main/PL).
22+
- [cybersecurity, digital signing and certificates in C#](https://github.com/miermontoto/Seguridad/tree/master/PL)
File renamed without changes.

src/content/collections/projects/gti.njk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ desc: homemade quiz made up of official questions of the course <i>Gestión de T
44
icons: [devicon-eleventy-plain, devicon-javascript-plain]
55
permalink: /gti/
66
demo: /gti/
7+
source: https://github.com/search?q=repo%3Amiermontoto%2Fmiermontoto+gti.&type=code
78
---
89

910
{% addStyle 'gti' %}

src/content/collections/projects/webutils.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: webutils
33
desc: wip!!
4-
icons: [devicon-eleventy-plain, devicon-javascript-plain]
4+
icons: [devicon-javascript-plain]
55
permalink: /webutils/
66
demo: /webutils/
77
---

src/content/collections/socials/github.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/content/collections/socials/linkedin.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/content/collections/socials/mail.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/content/collections/socials/socials.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)