Compare commits
15 commits
v240208-23
...
main
Author | SHA1 | Date | |
---|---|---|---|
48b9176ea7 | |||
40c818327e | |||
29c32e36b7 | |||
842db75dbc | |||
33f7c85591 | |||
27dd7d3639 | |||
ee5d83f0a9 | |||
22bc996d92 | |||
276950e16f | |||
e63f561650 | |||
84de1a1d85 | |||
b058ff182a | |||
b5279f3567 | |||
40e53676d4 | |||
ae166c59a9 |
5 changed files with 26 additions and 18 deletions
|
@ -7,15 +7,15 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
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:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Build
|
- name: Build
|
||||||
run: npx @11ty/eleventy
|
run: npx @11ty/eleventy
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist/
|
path: dist/
|
||||||
|
@ -23,13 +23,13 @@ jobs:
|
||||||
needs: [build]
|
needs: [build]
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: node:16-bullseye # Required by actions/download-artifact
|
image: node:21-bullseye # Required by actions/download-artifact
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
- name: rsync deployment
|
- 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:
|
with:
|
||||||
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
|
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
|
||||||
path: .
|
path: .
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Monsieur Louis, le site web
|
# Louis Guidez
|
||||||
|
|
||||||
Site web de https://monsieurlouis.se/.
|
Site web de https://louis.hostux.fr/
|
||||||
|
|
||||||
## Develop
|
## Develop
|
||||||
|
|
||||||
|
|
4
renovate.json
Normal file
4
renovate.json
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"prHourlyLimit": 0
|
||||||
|
}
|
9
src/_data/contact.js
Normal file
9
src/_data/contact.js
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
module.exports = function() {
|
||||||
|
return {
|
||||||
|
email: 'louis+homepage@hostux.fr',
|
||||||
|
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/'
|
||||||
|
};
|
||||||
|
};
|
|
@ -5,7 +5,7 @@
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<title>Monsieur Louis</title>
|
<title>Louis Guidez</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -26,17 +26,12 @@
|
||||||
</div>
|
</div>
|
||||||
<img id="photo" alt="Photo of Louis Guidez" src="photo.png">
|
<img id="photo" alt="Photo of Louis Guidez" src="photo.png">
|
||||||
<ul id="contact">
|
<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="Phone: {{ contact.phone }}"><a href="tel:{{ contact.phone | replace(" ", "") }}"><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="Email: {{ contact.email }}"><a href="mailto:{{ contact.email }}"><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="LinkedIn"><a href="{{ contact.linkedin }}"><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="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>
|
<li title="Git"><a href="https://git.hostux.fr/louis/"><i>{% include "ionicons/git-branch-outline.svg" %}</i></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{#
|
|
||||||
<div class="page">
|
|
||||||
Hey
|
|
||||||
</div>
|
|
||||||
#}
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue