helvetic-resume 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/_data/ca.yaml +46 -0
  4. data/_data/common.yaml +11 -0
  5. data/_data/en.yaml +46 -0
  6. data/_data/es.yaml +46 -0
  7. data/_data/it.yaml +46 -0
  8. data/_includes/bar_graph.liquid +17 -0
  9. data/_includes/bluesky.liquid +5 -0
  10. data/_includes/dot-accent.liquid +3 -0
  11. data/_includes/dot.liquid +3 -0
  12. data/_includes/dribbble.liquid +5 -0
  13. data/_includes/email.liquid +5 -0
  14. data/_includes/footer.liquid +38 -0
  15. data/_includes/github.liquid +4 -0
  16. data/_includes/head.liquid +28 -0
  17. data/_includes/header.liquid +23 -0
  18. data/_includes/instagram.liquid +18 -0
  19. data/_includes/language-menu.liquid +32 -0
  20. data/_includes/linkedin.liquid +8 -0
  21. data/_includes/medium.liquid +9 -0
  22. data/_includes/post_block.liquid +9 -0
  23. data/_includes/previous-next.liquid +22 -0
  24. data/_includes/previous-next_has-categories.liquid +41 -0
  25. data/_includes/print-button.liquid +4 -0
  26. data/_includes/theme-toggle.liquid +19 -0
  27. data/_includes/twitter.liquid +9 -0
  28. data/_layouts/about.liquid +42 -0
  29. data/_layouts/category-post.liquid +20 -0
  30. data/_layouts/category_index.liquid +13 -0
  31. data/_layouts/default.liquid +14 -0
  32. data/_layouts/home.liquid +96 -0
  33. data/_layouts/page.liquid +12 -0
  34. data/_layouts/post.liquid +20 -0
  35. data/_layouts/redirect.liquid +22 -0
  36. data/_pages/404.md +8 -0
  37. data/_pages/ca/articles.md +25 -0
  38. data/_pages/ca/documentacio.md +91 -0
  39. data/_pages/ca/quant-a-mi.md +60 -0
  40. data/_pages/en/about-me.md +59 -0
  41. data/_pages/en/docs.md +91 -0
  42. data/_pages/en/reports.md +25 -0
  43. data/_pages/es/articulos.md +25 -0
  44. data/_pages/es/documentacion.md +93 -0
  45. data/_pages/es/sobre-mi.md +60 -0
  46. data/_pages/it/articoli.md +25 -0
  47. data/_pages/it/chi-sono.md +58 -0
  48. data/_pages/it/documenti.md +93 -0
  49. data/_posts/ca/2024-05-15-el-gran-massimo-vignelli.md +45 -0
  50. data/_posts/ca/2024-10-14-creilles.md +38 -0
  51. data/_posts/ca/2025-02-06-exemple-markdown.md +172 -0
  52. data/_posts/ca/2025-03-02-benvinguts-a-jekyll.md +60 -0
  53. data/_posts/en/2024-05-15-the-great-massimo-vignelli.md +45 -0
  54. data/_posts/en/2024-10-14-potatoes.md +38 -0
  55. data/_posts/en/2025-02-06-markdown-sample.md +174 -0
  56. data/_posts/en/2025-03-02-welcome-to-jekyll.md +59 -0
  57. data/_posts/es/2024-05-15-es-el-gran-massimo-vignelli.md +45 -0
  58. data/_posts/es/2024-10-14-patatas.md +38 -0
  59. data/_posts/es/2025-02-06-ejemplo-markdown.md +172 -0
  60. data/_posts/es/2025-03-03-bienvenido-a-jekyll.md +60 -0
  61. data/_posts/it/2024-05-15-il-grande-massimo-vignelli.md +45 -0
  62. data/_posts/it/2024-10-14-patate.md +38 -0
  63. data/_posts/it/2025-02-06-esempio-markdown.md +175 -0
  64. data/_posts/it/2025-03-02-benvenuti-a-jekyll.md +59 -0
  65. data/_sass/_base.scss +110 -0
  66. data/_sass/_components.scss +161 -0
  67. data/_sass/_themes.scss +196 -0
  68. data/_sass/_utilities.scss +700 -0
  69. data/_sass/_variables.scss +43 -0
  70. data/assets/css/print.scss +128 -0
  71. data/assets/css/style.scss +7 -0
  72. data/assets/images/avatar.webp +0 -0
  73. data/assets/images/theme_black.png +0 -0
  74. data/assets/images/theme_blue.png +0 -0
  75. data/assets/images/theme_magenta.png +0 -0
  76. data/assets/images/theme_mint.png +0 -0
  77. data/assets/images/theme_orange.png +0 -0
  78. data/assets/images/theme_red.png +0 -0
  79. data/assets/images/theme_white.png +0 -0
  80. data/assets/images/theme_yellow.png +0 -0
  81. data/assets/js/print-button.js +16 -0
  82. data/assets/js/theme-toggle.js +105 -0
  83. data/scripts/entrypoint.sh +35 -0
  84. data/scripts/post-create.sh +21 -0
  85. metadata +250 -0
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ {% if page.category_name %}
6
+ {% assign category_name = page.category_name %}
7
+ {% endif %}
8
+
9
+ <div class="container mx-auto">
10
+ {% for post in site.categories[category_name] %}
11
+ {% include post_block.liquid %}
12
+ {% endfor %}
13
+ </div>
@@ -0,0 +1,14 @@
1
+ <!doctype html>
2
+ {% assign lang = site.active_lang %}
3
+ <html lang="{{ lang }}">
4
+ {% include head.liquid %}
5
+ <body>
6
+ <div class="site-wrapper">
7
+ <div class="site-content">
8
+ {% include header.liquid %}
9
+ {{ content }}
10
+ </div>
11
+ {% include footer.liquid %}
12
+ </div>
13
+ </body>
14
+ </html>
@@ -0,0 +1,96 @@
1
+ <!doctype html>
2
+ {% assign lang = site.active_lang %}
3
+ <html lang="{{ lang }}">
4
+ {% include head.liquid %}
5
+ <body>
6
+ <div class="site-wrapper">
7
+ <div class="site-content">
8
+ <header class="header-background px-2">
9
+ <nav class="clearfix header-sticky py-1 mt-1 mt-lg-0">
10
+ <ul class="list-reset right py-1 header-text font-smoothing mt-lg-1 mb-2 mb-lg-1">
11
+ {% assign sorted_pages = site.pages | sort: 'order' %}
12
+ {% for page in sorted_pages %}
13
+ {% if page.title and page.permalink != '/404' and page.lang == lang %}
14
+ <li class="inline-block">
15
+ <a class="align-middle link-primary header-link mr-2 mr-lg-0 ml-lg-2" href="{{ page.url | prepend: site.baseurl }}">
16
+ {{- page.title -}}
17
+ </a>
18
+ </li>
19
+ {% endif %}
20
+ {% endfor %}
21
+ <li class="inline-block">
22
+ {% include theme-toggle.liquid class="header-link" %}
23
+ </li>
24
+ </ul>
25
+ </nav>
26
+ <div class="container mx-auto px-2 mb-2 clearfix header-text">
27
+ <h1 class="h0 inline-block col-9 sm-width-full py-4 mt-3 header-title">{{ site.data[lang].title }}</h1>
28
+ <div class="clearfix mb-4 py-1">
29
+ <div class="col-4 sm-width-full left border-top-thin">
30
+ <div class="table">
31
+ <div class="inline-block mt-3 mr-1">
32
+ {% include dot-accent.liquid %}
33
+ </div>
34
+ <div class="inline-block mt-3 mr-1">
35
+ {% include dot-accent.liquid %}
36
+ </div>
37
+ <div class="inline-block mt-3">
38
+ {% include github.liquid %}
39
+ </div>
40
+ </div>
41
+ <!-- Set site description in config.yml -->
42
+ <p class="h4 lh-condensed font-smoothing mt-2 py-1">{{ site.data[lang].description }}</p>
43
+ </div>
44
+
45
+ <div class="col-4 sm-width-full left border-top-thin mt-3 mt-lg-0 ml-lg-4 table">
46
+ <div class="inline-block mt-3 mr-1">
47
+ {% include dot.liquid %}
48
+ </div>
49
+ {% if site.linkedin_username %}
50
+ <div class="inline-block mt-3 mr-1">
51
+ {% include linkedin.liquid %}
52
+ </div>
53
+ {% endif %}
54
+ {% if site.medium_username %}
55
+ <div class="inline-block mt-3 mr-1">
56
+ {% include medium.liquid %}
57
+ </div>
58
+ {% endif %}
59
+ {% if site.bluesky_username %}
60
+ <div class="inline-block mt-3 mr-1">
61
+ {% include bluesky.liquid %}
62
+ </div>
63
+ {% endif %}
64
+ {% if site.twitter_username %}
65
+ <div class="inline-block mt-3 mr-1">
66
+ {% include twitter.liquid %}
67
+ </div>
68
+ {% endif %}
69
+ {% if site.instagram_username %}
70
+ <div class="inline-block mt-3 mr-1">
71
+ {% include instagram.liquid %}
72
+ </div>
73
+ {% endif %}
74
+ {% if site.user_email %}
75
+ <div class="inline-block mt-3 mr-1">
76
+ {% include email.liquid %}
77
+ </div>
78
+ {% endif %}
79
+ </div>
80
+ </div>
81
+ </div>
82
+ </header>
83
+ </div>
84
+ {% if site.posts != empty %}
85
+ <div class="container mx-auto px-2 py-4">
86
+ {% for post in site.posts limit: 4 %}
87
+ {% if post.lang == lang %}
88
+ {% include post_block.liquid %}
89
+ {% endif %}
90
+ {% endfor %}
91
+ </div>
92
+ {% endif %}
93
+ {% include footer.liquid %}
94
+ </div>
95
+ </body>
96
+ </html>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="container mx-auto px-2 mt2 mb4">
5
+ <header>
6
+ <h1 class="h0 py-4 mt-3">{{ page.headline }}</h1>
7
+ </header>
8
+ <div class="col-4 sm-width-full border-top-thin"></div>
9
+ <div class="prose mb-4 py-4">
10
+ {{ content }}
11
+ </div>
12
+ </article>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {% assign lang = site.active_lang %}
5
+ <article class="container px-2 mx-auto mb4" itemscope itemtype="http://schema.org/BlogPosting">
6
+ <h1 class="h0 col-9 sm-width-full py-4 mt-3 inline-block" itemprop="name headline">{{ page.title }}</h1>
7
+ <div class="col-4 sm-width-full mt-1 border-top-thin ">
8
+ <p class="mb-3 py-2 bold h4">
9
+ <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | localize: '%-d %B %Y', lang }}</time>
10
+ </p>
11
+ </div>
12
+
13
+ <div class="prose" itemprop="articleBody">
14
+ {{ content }}
15
+ </div>
16
+ </article>
17
+
18
+ <div class="container mx-auto px-2 py-2 clearfix">
19
+ {% include previous-next.liquid %}
20
+ </div>
@@ -0,0 +1,22 @@
1
+ <!--
2
+ jekyll-redirect-from will use this template to implement redirects. This modification to the template helps polyglot redirect accounting for languages
3
+ -->
4
+ {% assign redirection = page.redirect.to | remove_first: site.url %}
5
+ {% if site.active_lang == site.default_lang %}
6
+ {% assign redirectTo = site.url | append: redirection %}
7
+ {% else %}
8
+ {% assign redirectTo = site.url | append: '/' | append: site.active_lang | append: redirection %}
9
+ {% endif %}
10
+ <!doctype html>
11
+ <html lang="en">
12
+ <meta charset="utf-8">
13
+ <title>Redirecting&hellip;</title>
14
+ <link rel="canonical" {% static_href %} href="{{ redirectTo }}" {% endstatic_href %}>
15
+ <script>
16
+ location = '{{ redirectTo }}';
17
+ </script>
18
+ <meta http-equiv="refresh" content="0; url={{ redirectTo }}">
19
+ <meta name="robots" content="noindex">
20
+ <h1>Redirecting&hellip;</h1>
21
+ <a {% static_href %} href="{{ redirectTo }}" {% endstatic_href %}>Click here if you are not redirected.</a>
22
+ </html>
data/_pages/404.md ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ title: The classic 404 error
3
+ layout: page
4
+ permalink: /404
5
+ lang: en
6
+ ---
7
+
8
+ It looks like whatever on Earth you were trying to find isn't here :(
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: category_index
3
+ lang: ca
4
+ title: Articles
5
+ headline: Articles
6
+ permalink: articles
7
+ order: 3
8
+ page_id: reports
9
+ category_name: articles
10
+ ---
11
+
12
+ <!--
13
+
14
+ Set the front matter:
15
+ title = your page title and link name in the navigation
16
+ permalink = the url for the page, i.e. example.com/my-awesome-category
17
+ category_name = the name of the cateogry you want to use to group posts, you'll need to use the same name on post pages
18
+
19
+ Save this page in the _pages folder.
20
+ Use the same name for the filename as the permalink, i.e.
21
+
22
+ permalink: /my-awesome-category/
23
+ filename: my-awesome-category.liquid
24
+
25
+ -->
@@ -0,0 +1,91 @@
1
+ ---
2
+ layout: page
3
+ title: Documentació
4
+ headline: Documentació
5
+ lang: ca
6
+ order: 2
7
+ page_id: docs
8
+ permalink: documentacio
9
+ category_name: documentacio
10
+ ---
11
+
12
+ Helvetic Resume és un tema Jekyll audaç inspirat en el disseny suís i en les obres de [Massimo Vignelli]({{ site.base_url }}/vignelli). Aquest tema s'adapta bé a llocs amb molt de contingut escrit.
13
+
14
+ ### Característiques:
15
+ * El disseny "mobile-first" garanteix que aquest tema funcione de manera òptima en mòbils mentre s'adapta elegantment a pantalles de mida d'escriptori.
16
+ * Dissenyat per a blocs i llocs amb molt de contingut escrit, amb tipografia destacada, resums a la pàgina principal i fragments d'entrades anteriors/següents.
17
+ * Suport per a múltiples idiomes, preconfigurat en 4 llengües.
18
+ * Compatible amb una àmplia gamma d'elements HTML i markdown.
19
+ * Estils flexibles que es poden reutilitzar per a la personalització sense afegir CSS addicional.
20
+ * Enllaços de navegació generats dinàmicament. Consulta la documentació per afegir pàgines amb categories específiques d'entrades mitjançant bucles "for".
21
+
22
+ ## Instal·lació
23
+
24
+ ### Ús de Devcontainers (recomanat)
25
+ Només hi ha tres requisits bàsics per utilitzar aquest tema immediatament:
26
+ - Docker
27
+ - VS Code
28
+ - Extensió Devcontainers
29
+
30
+ Si teniu aquests tres elements, aquest projecte és com un iogurt: només cal obrir la tapa i ja està llest per menjar ;).
31
+
32
+ Si en obrir el projecte no se us demana obrir-lo en un contenidor, busqueu el botó blau a la cantonada inferior esquerra de la pantalla i selecciona `Reopen in container`.
33
+
34
+ Si mai necessiteu reconstruir el teu contenidor des de zero, seleccioneu `Rebuild container without cache` des del menú Ctrl + Shift + P.
35
+
36
+ ### Instal·lació de dependències
37
+ Assumint que teniu Ruby i Bundler instal·lats:
38
+ ```bash
39
+ cd src
40
+ bundle install
41
+ ```
42
+
43
+ Deixeu que el procés finalitze i després executeu:
44
+ ```bash
45
+ bundle exec jekyll serve
46
+ ```
47
+
48
+ ### Ús del vostre propi Dockerfile
49
+ Podeu dockeritzar l'aplicació pel vostre compte creant el vostre propi Dockerfile o adaptant i utilitzant el que hi ha a la carpeta `.devcontainer`, després executeu-lo amb el vostre propi `compose.yaml` o com preferiu.
50
+
51
+ No hem proporcionat cap d'aquests fitxers per evitar repeticions i perquè aquest és un repositori d'opinió marcada, però hauria de ser molt fàcil de crear i és la millor opció si no utilitzeu VS Code.
52
+
53
+ ## Configuració multilingüe
54
+ Helvetic Resume ve preconfigurat amb els complements `jekyll-polyglot` i `jekyll-redirect-from`, que habiliten les seves capacitats multilingües.
55
+
56
+ Per demostrar-ho, aquest tema està preconfigurat en quatre llengües: anglès, català, espanyol i italià, però podeu afegir o eliminar tants idiomes com vulgueu des del fitxer `_config.yml`.
57
+
58
+ Trobareu les traduccions actualment en ús a la carpeta `_data`. Finalment, utilitzem el complement `jekyll-date-localization` per traduir les dates. El complement ja inclou alguns idiomes, però si el vostre no hi és, sempre el podeu afegir a la carpeta `_locales`, tal com hem fet amb el català.
59
+
60
+ ## Modes i colors
61
+ Aquest tema ha estat dissenyat amb el màxim desig de ser fidel al seu homòleg original, encara que actualitzat als estàndards moderns no només en termes de dependències, sinó també de gustos.
62
+
63
+ És per això que hem afegit un increïble botó d'animació per canviar entre els modes Clar i Fosc (gràcies [web.dev](https://web.dev/patterns/theming/theme-switch) per això!).
64
+
65
+ Cada cop que el preméu, no només canviareu entre clar i fosc o viceversa, sinó que també alternareu aleatòriament entre la majoria dels dissenys de broccolini per al tema Swiss. Només hem descartat el gris per una alternativa més fresca (no ens agradava ;P) i hem canviat significativament el blau. La resta es manté igual, només adaptant-los als esquemes clar/fosc.
66
+
67
+ | | |
68
+ |:-----------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------|
69
+ | `theme_color: black` | `theme_color: red` |
70
+ | <img width="330" alt="black" src="{{ site.base_url }}/assets/images/theme_black.png"> | <img width="330" alt="red" src="{{ site.base_url }}/assets/images/theme_red.png"> |
71
+ | `theme_color: mint` | `theme_color: white` |
72
+ | <img width="330" alt="mint" src="{{ site.base_url }}/assets/images/theme_mint.png"> | <img width="330" alt="white" src="{{ site.base_url }}/assets/images/theme_white.png"> |
73
+ | `theme_color: blue` | `theme_color: magenta` |
74
+ | <img width="330" alt="blue" src="{{ site.base_url }}/assets/images/theme_blue.png"> | <img width="330" alt="magenta" src="{{ site.base_url }}/assets/images/theme_magenta.png"> |
75
+ | `theme_color: orange` | `theme_color: yellow` |
76
+ | <img width="330" alt="orange" src="{{ site.base_url }}/assets/images/theme_orange.png"> | <img width="330" alt="yellow" src="{{ site.base_url }}/assets/images/theme_yellow.png"> |
77
+
78
+ ## Desenvolupament
79
+ El vostre està configurat com a lloc web Jekyll normal! Per provar-lo, només obriu-lo en un devcontainer o executeu `bundle exec jekyll serve` i obriu el navegador a `http://localhost:4000`. Això inicia un servidor Jekyll utilitzant el tema. Afegiu pàgines, documents, dades, etc., com és habitual per provar-ne el contingut. A mesura que féu modificacions al tema i al contingut, el lloc es regenerarà i podreu anar veient els canvis al navegador, com de costum.
80
+
81
+ Quan el tema es publique, només es publicaran els fitxers a `src` que estiguen versionats amb Git.
82
+
83
+ ## Contribució
84
+ Podeu fer sol·licituds de "pull request" i obrir informes d'errades a GitHub a [https://github.com/hipervincle/helvetic-resume](https://github.com/hipervincle/helvetic-resume). Aquest projecte vol ser un espai segur i acollidor per a la col·laboració, i s'espera que els col·laboradors adhereixin al codi de conducta de [Contributor Covenant](http://contributor-covenant.org).
85
+
86
+ ## Atribucions
87
+ - Botó mode tema: [web.dev](https://web.dev/patterns/theming/theme-switch)
88
+ - Favicon: [narak0rn](https://www.flaticon.com/free-icons/swiss-army-knife)
89
+
90
+ ## Llicència
91
+ El tema està disponible com a codi obert sota els termes de la [Llicència MIT](http://opensource.org/licenses/MIT).
@@ -0,0 +1,60 @@
1
+ ---
2
+ title: Quant a mi
3
+ headline: Augusta Tempus
4
+ lang: ca
5
+ layout: about
6
+ order: 1
7
+ page_id: about-me
8
+ permalink: quant-a-mi
9
+ ---
10
+
11
+ <h2 class="section print-only"><i class="fa-solid fa-user"></i> Perfil professional</h2>
12
+ Una mestra rellotgera amb una passió per la precisió en totes les seues formes, ja siga en la dansa intricada de la mecànica horològica, el ballet aeri del vol en helicòpter, o l'elegància lògica del disseny de llenguatges.
13
+
14
+ Durant més de 25 anys, m'he dedicat a l'ofici de la rellotgeria, combinant tècniques tradicionals suïsses amb enginyeria innovadora i a mida. Les meues habilitats van més enllà del taller fins als cels, on passe un mes cada any pilotant helicòpters, i fins al món de la creació lingüística, on he desenvolupat _Lingua Tempus_, un llenguatge de programació únic arrelat en la gramàtica llatina.
15
+
16
+ <h2 class="section"><i class="fa-solid fa-briefcase"></i> Experiència professional</h2>
17
+ _Juliol, 1998 -- aquest mateix matí_\\
18
+ **Rellotgera cap - Tempus Precision Watches (Autònom)**
19
+
20
+ - Vaig establir un taller de rellotgeria a mida, especialitzat en rellotges mecànics fets a mà.
21
+ - Vaig dissenyar i construir més de 50 rellotges únics i d'alta complicació per a col·leccionistes privats.
22
+ - Vaig desenvolupar solucions innovadores per millorar la precisió i la durabilitat dels moviments mecànics.
23
+ - Vaig oferir serveis experts de reparació i restauració de rellotges per a rellotges antics i moderns.
24
+ - Vaig crear la identitat de la marca i les estratègies de màrqueting.
25
+
26
+ _Estacional, 1 mes/any, 2005 -- fins ara_\\
27
+ **Pilot d'helicòpter freelance - Alpine Air Adventures**
28
+
29
+ - Realitze vols turístics per a turistes als Alps Suïssos.
30
+ - Realitze missions especialitzades de fotografia aèria i observació.
31
+ - Mantinc els més alts estàndards de seguretat i protocol operatiu.
32
+ - Proveïment d'instrucció de vol i mentoria per a pilots joves.
33
+
34
+ _Projecte personal, 2010 -- avui i comptant_\\
35
+ **Creadora de _Lingua Tempus_**
36
+
37
+ - Vaig desenvolupar un llenguatge de programació funcional basat en el llatí.
38
+ - Vaig dissenyar una sintaxi única i una estructura gramatical per a _Lingua Tempus_, combinant lògica antiga amb principis computacionals moderns.
39
+ - Vaig desenvolupar un intèrpret bàsic capaç d'analitzar i executar algorismes senzills en _Lingua Tempus_.
40
+
41
+ <h2 class="section"><i class="fa-solid fa-graduation-cap"></i> Educació</h2>
42
+ - **Escola Suïssa de Rellotgeria** - Certificat de Mestre Rellotger (1998)
43
+ - **Acadèmia Suïssa d'Aviació** - Llicència de Pilot Comercial d'Helicòpter (2004)
44
+ - **Autodidacta** - Disseny i implementació de *Lingua Tempus*.
45
+
46
+ <h2 class="section"><i class="fa-solid fa-trophy"></i> Premis i reconeixements</h2>
47
+ - **Premi "Roda d'Equilibri Daurada"** - Gremi de Rellotgers Suïssos, per "Innovació en el Disseny de Complicacions" (2012).
48
+ - **Premi "Mestre del Cel"** - Alpine Air Adventures, per "Seguretat i Professionalitat Exemplars" (2018, 2022).
49
+ - Invitació per parlar sobre *Lingua Tempus* en el *Congrés Internacional de Lingüística* a Berna (2020).
50
+
51
+ <h2 class="section"><i class="fa-solid fa-flask"></i> Projectes</h2>
52
+ - **L'Astrolabi Tourbillon:** Un rellotge dissenyat per mi mateixa, amb alta complicació, que mostra les fases lunars, els moviments celestials i les zones horàries.
53
+ - **El Linx Alpí:** Un disseny personalitzat d'helicòpter per a un rendiment màxim i eficiència als Alps Suïssos.
54
+ - **Lingua Tempus:** Un llenguatge de programació basat en el llatí, amb un enfocament en la claredat, la precisió i el flux lògic. El codi sembla poesia.
55
+
56
+ <h2 class="section"><i class="fa-solid fa-mountain-sun"></i> Interessos personals</h2>
57
+ - Caminades i muntanyisme als Alps Suïssos
58
+ - Literatura i filosofia clàssica llatina
59
+ - Restauració de rellotges i rellotges antics
60
+ - Lingüística i disseny de llenguatges
@@ -0,0 +1,59 @@
1
+ ---
2
+ title: About me
3
+ headline: Augusta Tempus
4
+ lang: en
5
+ layout: about
6
+ order: 1
7
+ page_id: about-me
8
+ permalink: about-me
9
+ ---
10
+ <h2 class="section print-only"><i class="fa-solid fa-user"></i> Professional Profile</h2>
11
+ A master watchmaker with a passion for precision in all its forms, whether in the intricate dance of horological mechanics, the aerial ballet of helicopter flight, or the logical elegance of language design.
12
+
13
+ For over 25 years, I've dedicated myself to the craft of watchmaking, blending traditional Swiss techniques with innovative, bespoke engineering. My skills extend beyond the workshop to the skies, where I spend a month each year piloting helicopters, and to the realm of linguistic creation, where I've developed *Lingua Tempus*, a unique programming language rooted in Latin grammar.
14
+
15
+ <h2 class="section"><i class="fa-solid fa-briefcase"></i> Work Experience</h2>
16
+ _July, 1998 -- this very morning_\\
17
+ **Chief Horologist - Tempus Precision Watches (Self-Employed)**
18
+
19
+ * Established a bespoke watchmaking atelier, specializing in handcrafted mechanical timepieces.
20
+ * Designed and built over 50 unique, high-complication watches for private collectors.
21
+ * Developed innovative solutions for improving accuracy and longevity of mechanical movements.
22
+ * Provided expert watch repair and restoration services for antique and modern timepieces.
23
+ * Created the brand identity and the marketing strategies.
24
+
25
+ _Seasonal, 1 Month/Year, 2005 -- right now_\\
26
+ **Freelance Helicopter Pilot - Alpine Air Adventures**
27
+ - Conduct mountain tour flights for tourists in the Swiss Alps.
28
+ - Perform specialized aerial photography and observation missions.
29
+ - Maintain the highest standards of safety and operational protocol.
30
+ - Provide flight instruction and mentorship to junior pilots.
31
+
32
+ _Personal Project, 2010 -- today and counting_\\
33
+ **Creator of *Lingua Tempus***
34
+
35
+ - Developed a functional, Latin-based programming language.
36
+ - Designed a unique syntax and grammar structure for *Lingua Tempus*, blending ancient logic with modern computational principles.
37
+ - Developed a basic interpreter, able to parse and run simple algorithms in *Lingua Tempus*.
38
+
39
+ <h2 class="section"><i class="fa-solid fa-graduation-cap"></i> Education</h2>
40
+
41
+ - **Swiss School of Watchmaking** - Master Watchmaker Certification (1998)
42
+ - **Swiss Aviation Academy** - Commercial Helicopter Pilot License (2004)
43
+ - **Self taught** - *Lingua Tempus* design and implementation.
44
+
45
+ <h2 class="section"><i class="fa-solid fa-trophy"></i> Awards & Recognition</h2>
46
+ - **"Golden Balance Wheel" Award** - Swiss Watchmakers Guild, for "Innovation in Complication Design" (2012).
47
+ - **"Sky Master" Award** - Alpine Air Adventures, for "Exemplary Safety and Professionalism" (2018, 2022).
48
+ - Invitation to talk about *Lingua Tempus* in the *International Linguistic Congress* in Bern (2020).
49
+
50
+ <h2 class="section"><i class="fa-solid fa-flask"></i> Projects</h2>
51
+ - **The Astrolabe Tourbillon:** A self-designed, highly complicated watch that displays lunar phases, celestial movements and timezones.
52
+ - **The Alpine Lynx:** A custom helicopter design for maximum performance and efficiency in the Swiss Alps.
53
+ - **Lingua Tempus:** A programming language rooted in Latin, with a focus on clarity, precision, and logical flow. The code looks like poetry.
54
+
55
+ <h2 class="section"><i class="fa-solid fa-mountain-sun"></i> Personal Interests</h2>
56
+ - Hiking and mountaineering in the Swiss Alps
57
+ - Classic Latin literature and philosophy
58
+ - Antique clock and watch restoration
59
+ - Linguistics and language design
data/_pages/en/docs.md ADDED
@@ -0,0 +1,91 @@
1
+ ---
2
+ layout: page
3
+ title: Docs
4
+ headline: Docs
5
+ lang: en
6
+ order: 2
7
+ page_id: docs
8
+ permalink: docs
9
+ category_name: docs
10
+ ---
11
+
12
+ Helvetic Resume is a bold Jekyll theme inspired by Swiss design and the works of [Massimo Vignelli]({{ site.base_url }}/vignelli). This theme lends itself well to sites heavy on written content.
13
+
14
+ ### Features:
15
+ * Mobile-first design ensures this theme performs fastest on mobile while scaling elegantly to desktop-size screens.
16
+ * Designed for blogs and sites heavy on written content, with bold typography styles, homepage summaries, and previous/next snippets.
17
+ * Multi-language support, comes preset in 4 languages.
18
+ * Supports a wide range of HTML elements and markdown.
19
+ * Flexible styles that can be reused for customization without adding additional CSS.
20
+ * Dynamically generated navigation links. See docs for adding pages with specific post category for-loops.
21
+
22
+ ## Installation
23
+
24
+ ### Using Devcontainers (recommended)
25
+ There are only three basic requirements to use this theme right away:
26
+ - Docker
27
+ - VS Code
28
+ - Devcontainers extension
29
+
30
+ If you have these three things, this project is like a yoghourt, just open the lid and it's ready to eat ;).
31
+
32
+ If you open the project and it doesn't ask you to open it in a container, look for the blue button in the lower left edge of the screen and select `Reopen in container`.
33
+
34
+ If you ever need to rebuild your container from scratch, just select `Rebuild container without cache` from Ctrl + Shift + P menu.
35
+
36
+
37
+ ### Installing dependencies
38
+ Assuming you've got Ruby and Bundler installed:
39
+ ```bash
40
+ cd src
41
+ bundle install
42
+ ````
43
+
44
+ Let the process finish and then run:
45
+ ```bash
46
+ bundle exec jekyll serve
47
+ ```
48
+
49
+ ### Using your own Dockerfile
50
+ You can dockerise the app yourself by creating your own Dockerfile and or adapt and use the one in `.devcontainer` folder, then run it with your own `compose.yaml` or however you like best.
51
+
52
+ We've not provided any of them to avoid repetition and because this is an opinionated repo, but it should be very easy to make and it's your best option if you are not using VS Code.
53
+
54
+ ## Multi-language setup
55
+ Helvetic Resume comes preconfigured with `jekyll-polyglot` and `jekyll-redirect-from` plugins that render its multi-language capabilities.
56
+
57
+ To demonstrate them, this theme comes preset in four languages: English, Catalan, Spanish and Italian, but you can add or remove as many as you wish from `_config.yml` file.
58
+
59
+ You'll find the translations currently in use in `_data` folder. Lastly, we're using plugin `jekyll-date-localization` to localise dates. The plugin already has some languages, but if your language is not there, you can always add it to the `_locales` folder, the same way we've done with Catalan.
60
+
61
+ ## Modes and colors
62
+ This theme has been designed with the utmost desire of being faithful to it's original counterpart, albeit upgraded to modern standards not only in terms of dependencies but also tastes.
63
+ That's why we've put an amazing animation button to toggle between Dark and Light modes (thank you [web.dev](https://web.dev/patterns/theming/theme-switch) for it!).
64
+
65
+ Each time you press it, you'll not only be toggling from light to dark or vice versa, but also randomly changing between most of broccolini's designs for the Swiss theme. We've only discarded gray for a fresh alternative (we didn't like it ;P) and severely tweaked blue. The rest is kept as is, only adapting to the light/dark schemes.
66
+
67
+ | | |
68
+ |:-----------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------|
69
+ | `theme_color: black` | `theme_color: red` |
70
+ | <img width="330" alt="black" src="{{ site.base_url }}/assets/images/theme_black.png"> | <img width="330" alt="red" src="{{ site.base_url }}/assets/images/theme_red.png"> |
71
+ | `theme_color: mint` | `theme_color: white` |
72
+ | <img width="330" alt="mint" src="{{ site.base_url }}/assets/images/theme_mint.png"> | <img width="330" alt="white" src="{{ site.base_url }}/assets/images/theme_white.png"> |
73
+ | `theme_color: blue` | `theme_color: magenta` |
74
+ | <img width="330" alt="blue" src="{{ site.base_url }}/assets/images/theme_blue.png"> | <img width="330" alt="magenta" src="{{ site.base_url }}/assets/images/theme_magenta.png"> |
75
+ | `theme_color: orange` | `theme_color: yellow` |
76
+ | <img width="330" alt="orange" src="{{ site.base_url }}/assets/images/theme_orange.png"> | <img width="330" alt="yellow" src="{{ site.base_url }}/assets/images/theme_yellow.png"> |
77
+
78
+ ## Development
79
+ Your theme is setup just like a normal Jekyll site! To test your theme, just open it in a devcontainer or run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
80
+
81
+ When your theme is released, only the files in `src`, tracked with Git will be released.
82
+
83
+ ## Contributing
84
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/hipervincle/helvetic-resume](https://github.com/hipervincle/helvetic-resume). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
85
+
86
+ ## Credits
87
+ - Theme switch: [web.dev](https://web.dev/patterns/theming/theme-switch)
88
+ - Favicon: [narak0rn](https://www.flaticon.com/free-icons/swiss-army-knife)
89
+
90
+ ## License
91
+ The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: category_index
3
+ lang: en
4
+ title: Reports
5
+ headline: Reports
6
+ permalink: reports
7
+ order: 3
8
+ page_id: reports
9
+ category_name: reports
10
+ ---
11
+
12
+ <!--
13
+
14
+ Set the front matter:
15
+ title = your page title and link name in the navigation
16
+ permalink = the url for the page, i.e. example.com/my-awesome-category
17
+ category_name = the name of the cateogry you want to use to group posts, you'll need to use the same name on post pages
18
+
19
+ Save this page in the _pages folder.
20
+ Use the same name for the filename as the permalink, i.e.
21
+
22
+ permalink: /my-awesome-category/
23
+ filename: my-awesome-category.liquid
24
+
25
+ -->
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: category_index
3
+ lang: es
4
+ title: Artículos
5
+ headline: Artículos
6
+ permalink: articulos
7
+ order: 3
8
+ page_id: reports
9
+ category_name: articulos
10
+ ---
11
+
12
+ <!--
13
+
14
+ Set the front matter:
15
+ title = your page title and link name in the navigation
16
+ permalink = the url for the page, i.e. example.com/my-awesome-category
17
+ category_name = the name of the cateogry you want to use to group posts, you'll need to use the same name on post pages
18
+
19
+ Save this page in the _pages folder.
20
+ Use the same name for the filename as the permalink, i.e.
21
+
22
+ permalink: /my-awesome-category/
23
+ filename: my-awesome-category.liquid
24
+
25
+ -->