Compare commits

...

16 commits

Author SHA1 Message Date
40c818327e Merge pull request 'Update actions/download-artifact action to v4' (#7) from renovate/actions-download-artifact-4.x into main
Reviewed-on: #7
2024-03-16 18:49:14 +01:00
29c32e36b7 Merge pull request 'Update actions/upload-artifact action to v4' (#8) from renovate/actions-upload-artifact-4.x into main
Reviewed-on: #8
2024-03-16 18:49:08 +01:00
842db75dbc Merge pull request 'Update node Docker tag to v21' (#9) from renovate/node-21.x into main
Reviewed-on: #9
2024-03-16 18:49:06 +01:00
33f7c85591 Merge pull request 'Update actions/checkout action to v4' (#6) from renovate/actions-checkout-4.x into main
Reviewed-on: #6
2024-03-16 18:49:04 +01:00
27dd7d3639 Update node Docker tag to v21 2024-03-16 17:35:29 +00:00
ee5d83f0a9 Update actions/upload-artifact action to v4 2024-03-16 17:35:27 +00:00
22bc996d92 Update actions/download-artifact action to v4 2024-03-16 17:35:26 +00:00
276950e16f Update actions/checkout action to v4 2024-03-16 17:35:24 +00:00
e63f561650 camelCase instead of lowercase for prHourlyLimit 2024-03-16 18:08:20 +01:00
84de1a1d85 disable PR limit for renovate as we have no tests or CI ran for PR (yet) 2024-03-11 23:31:49 +01:00
b058ff182a Merge pull request 'Configure Renovate' (#4) from renovate/configure into main
Reviewed-on: #4
2024-03-11 23:31:34 +01:00
b5279f3567 Add renovate.json 2024-03-11 22:28:32 +00:00
40e53676d4 updated hostux git URL for the moment
All checks were successful
/ build (push) Successful in 21s
/ deploy (push) Successful in 19s
2024-02-21 13:49:37 +01:00
ae166c59a9 contact info in data
Some checks failed
/ build (push) Successful in 1m26s
/ deploy (push) Failing after 11s
2024-02-21 13:44:48 +01:00
554ca60390 now with self-hosted fonts
All checks were successful
/ build (push) Successful in 20s
/ deploy (push) Successful in 15s
2024-02-08 23:07:59 +01:00
7161e37cdb compressed photo
All checks were successful
/ build (push) Successful in 18s
/ deploy (push) Successful in 15s
2024-02-08 22:53:40 +01:00
10 changed files with 61 additions and 17 deletions

View file

@ -2,6 +2,9 @@ module.exports = function(eleventyConfig) {
// Copying static assets
eleventyConfig.addPassthroughCopy("src/style.css");
eleventyConfig.addPassthroughCopy("src/photo.png");
eleventyConfig.addPassthroughCopy("src/advent_pro_500.woff2");
eleventyConfig.addPassthroughCopy("src/advent_pro_600.woff2");
eleventyConfig.addPassthroughCopy("src/updock_400.woff2");
// Configuring permalinks to be ~.html instead of ~/
eleventyConfig.addGlobalData("permalink", () => {

View file

@ -7,15 +7,15 @@ jobs:
build:
runs-on: docker
container:
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
image: node:21-bullseye # Required by actions/checkout and actions/upload-artifact
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Build
run: npx @11ty/eleventy
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
@ -23,13 +23,13 @@ jobs:
needs: [build]
runs-on: docker
container:
image: node:16-bullseye # Required by actions/download-artifact
image: node:21-bullseye # Required by actions/download-artifact
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
- name: rsync deployment
uses: https://git.hostux.fr/Hostux/rsync-deployments@6.0.0
uses: https://git.archive.hostux.fr/Hostux/rsync-deployments@6.0.0
with:
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
path: .

4
renovate.json Normal file
View file

@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"prHourlyLimit": 0
}

9
src/_data/contact.js Normal file
View file

@ -0,0 +1,9 @@
module.exports = function() {
return {
email: 'hello@monsieurlouis.se',
phone: '+33 6 99 39 23 90',
linkedin: 'https://www.linkedin.com/in/louis-guidez-42a4a0170/',
instagram: 'https://www.instagram.com/wingsofxiv/',
git: 'https://git.hostux.fr/louis/'
};
};

BIN
src/advent_pro_500.woff2 Normal file

Binary file not shown.

BIN
src/advent_pro_600.woff2 Normal file

Binary file not shown.

View file

@ -26,17 +26,12 @@
</div>
<img id="photo" alt="Photo of Louis Guidez" src="photo.png">
<ul id="contact">
<li title="Phone: +33 6 99 39 23 90"><a href="tel:+33699392390"><i>{% include "ionicons/call-outline.svg" %}</i></a></li>
<li title="Email: louis@hostux.fr"><a href="mailto:louis@hostux.fr"><i>{% include "ionicons/mail-outline.svg" %}</i></a></li>
<li title="LinkedIn"><a href="https://www.linkedin.com/in/louis-guidez-42a4a0170/"><i>{% include "ionicons/logo-linkedin.svg" %}</i></a></li>
<li title="Instagram: @wingsofxiv"><a href="https://www.instagram.com/wingsofxiv/"><i>{% include "ionicons/logo-instagram.svg" %}</i></a></li>
<li title="Phone: {{ contact.phone }}"><a href="tel:{{ contact.phone | replace(" ", "") }}"><i>{% include "ionicons/call-outline.svg" %}</i></a></li>
<li title="Email: {{ contact.email }}"><a href="mailto:{{ contact.email }}"><i>{% include "ionicons/mail-outline.svg" %}</i></a></li>
<li title="LinkedIn"><a href="{{ contact.linkedin }}"><i>{% include "ionicons/logo-linkedin.svg" %}</i></a></li>
<li title="Instagram: @wingsofxiv"><a href="{{ contact.instagram }}"><i>{% include "ionicons/logo-instagram.svg" %}</i></a></li>
<li title="Git"><a href="https://git.hostux.fr/louis/"><i>{% include "ionicons/git-branch-outline.svg" %}</i></a></li>
</ul>
</div>
{#
<div class="page">
Hey
</div>
#}
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 361 KiB

View file

@ -1,5 +1,38 @@
@import url('https://fonts.googleapis.com/css2?family=Updock&family=Advent+Pro:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Updock&family=Advent+Pro:wght@600&display=swap');
/**
* Fonts
*/
/* latin */
@font-face {
font-family: 'Advent Pro';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url("advent_pro_500.woff2") format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Advent Pro';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url("advent_pro_600.woff2") format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Updock';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("updock_400.woff2") format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/**
* Styles

BIN
src/updock_400.woff2 Normal file

Binary file not shown.