Compare commits
No commits in common. "main" and "v240208-2308" have entirely different histories.
main
...
v240208-23
5 changed files with 18 additions and 26 deletions
|
@ -7,15 +7,15 @@ jobs:
|
|||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:21-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Build
|
||||
run: npx @11ty/eleventy
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
||||
|
@ -23,13 +23,13 @@ jobs:
|
|||
needs: [build]
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:21-bullseye # Required by actions/download-artifact
|
||||
image: node:16-bullseye # Required by actions/download-artifact
|
||||
steps:
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
- name: rsync deployment
|
||||
uses: https://git.archive.hostux.fr/Hostux/rsync-deployments@6.0.0
|
||||
uses: https://git.hostux.fr/Hostux/rsync-deployments@6.0.0
|
||||
with:
|
||||
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
|
||||
path: .
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Louis Guidez
|
||||
# Monsieur Louis, le site web
|
||||
|
||||
Site web de https://louis.hostux.fr/
|
||||
Site web de https://monsieurlouis.se/.
|
||||
|
||||
## Develop
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"prHourlyLimit": 0
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
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 name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Louis Guidez</title>
|
||||
<title>Monsieur Louis</title>
|
||||
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
@ -26,12 +26,17 @@
|
|||
</div>
|
||||
<img id="photo" alt="Photo of Louis Guidez" src="photo.png">
|
||||
<ul id="contact">
|
||||
<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="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="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>
|
||||
|
|
Loading…
Reference in a new issue