tangled
alpha
login
or
join now
finxol.io
/
portfolio
0
fork
atom
Personal site
staging.colinozanne.co.uk
portfolio
astro
0
fork
atom
overview
issues
pulls
pipelines
feat: add travel-blog page
finxol.io
2 months ago
c5772ebf
83fb9f28
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
1/1
deploy.yaml
success
10s
+26
2 changed files
expand all
collapse all
unified
split
src
pages
en
projects
travel-blog.astro
fr
projects
travel-blog.astro
+13
src/pages/en/projects/travel-blog.astro
reviewed
···
1
1
+
---
2
2
+
import ProjectPage from "@/components/pages/project.astro";
3
3
+
4
4
+
const content = {
5
5
+
projectId: "travel-blog",
6
6
+
datePrefix: "Since",
7
7
+
repoLinkText: "Link",
8
8
+
};
9
9
+
---
10
10
+
11
11
+
<ProjectPage content={content}>
12
12
+
<p class="description"></p>
13
13
+
</ProjectPage>
+13
src/pages/fr/projects/travel-blog.astro
reviewed
···
1
1
+
---
2
2
+
import ProjectPage from "@/components/pages/project.astro";
3
3
+
4
4
+
const content = {
5
5
+
projectId: "travel-blog",
6
6
+
datePrefix: "Depuis le",
7
7
+
repoLinkText: "Lien",
8
8
+
};
9
9
+
---
10
10
+
11
11
+
<ProjectPage content={content}>
12
12
+
<p class="description"></p>
13
13
+
</ProjectPage>