Skip to content

Commit 419bc9a

Browse files
committed
Index and about changed for a better fit
1 parent 8785f45 commit 419bc9a

5 files changed

Lines changed: 38 additions & 33 deletions

File tree

tutorial/src/cases/EPISODD - Copie.md:Zone.Identifier

Whitespace-only changes.

tutorial/src/cases/EVOECO.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: 'EVOECO - Evolution of Artifact Ecologies (EoA) in civil security populations'
3+
pubDate: 2026-04-16
4+
description: 'This is the case description'
5+
authors: ["Lisa Formentini", "François Charoy", "Matthieu Tixier"]
6+
image:
7+
url: 'https://docs.astro.build/assets/rays.webp'
8+
alt: 'An exemplar image for the project.'
9+
tags: ["topic1", "topic2", "Long Term Collaboration", "civil security"]
10+
---
11+
12+
Provide a description of the research case and field site.
13+
14+
## With as much sections (or list) as needed
15+
16+
My field study is awesome.
17+
18+
1. **Negotiate field entry**: First, I shared details about my entry in the field site.
19+
20+
2. **Collected data**: with `anonymity` and `systematic organization in mind`.
21+
22+
3. **Crunching the transcripts**: Leading to inspiring results.
23+
24+
25+
## Publication(s)
26+
27+
1. Lisa Formentini, Matthieu Tixier, Francois Charoy. Etudier les collaborations supportées par le numérique grâce aux Ecologies d'Artefacts : un état de l'art. Interactions Humain Machines 2025, Afihm, Nov 2025, Toulouse, France. [hal-05059264v5](https://hal.science/hal-05059264v5)
28+
29+
2. Lisa Formentini, Francois Charoy, Matthieu Tixier. Changing Collaborative Tools: Introductory Dynamics of Digital Collaborative Tools in Civil Security’s Ecologies of Artifacts. ISCRAM 2025- International Conference on Information Systems for Crisis Response and Management, May 2025, Halifax, Canada. [10.59297/m1qksb05](https://dx.doi.org/10.59297/m1qksb05). [hal-04992248v3](https://hal.science/hal-04992248v3)

tutorial/src/layouts/CaseLayout.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import BaseLayout from './BaseLayout.astro';
33
const { frontmatter } = Astro.props;
44
---
55
<BaseLayout pgTitle={frontmatter.title}>
6+
<img src={frontmatter.image.url} width="300" alt={frontmatter.image.alt} />
67
<p>Author(s): {frontmatter.author}
78
<div>
8-
{frontmatter.authors.map((author) => <p>{author}{frontmatter.authors.length === 1 ?"":", "}</p>)}
9+
{frontmatter.authors.map((author) => <span>{author}{frontmatter.authors.length === 1 ?"":", "}</span>)}
910
</div>
1011
</p>
1112
<p>Published on: {frontmatter.pubDate.toString().slice(0,10)}</p>

tutorial/src/pages/about.astro

Lines changed: 5 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,20 @@
22
import '../styles/global.css';
33
import BaseLayout from '../layouts/BaseLayout.astro';
44
5-
const pgTitle = "About Me";
6-
7-
const identity = {
8-
firstName: "Sarah",
9-
country: "Canada",
10-
occupation: "Technical Writer",
11-
hobbies: ["photography", "birdwatching", "baseball"],
12-
};
13-
14-
const skills = ["HTML", "CSS", "JavaScript", "React", "Astro", "Writing Docs"];
15-
16-
const happy = true;
17-
18-
const goal = 2;
5+
const pgTitle = "About";
196
207
---
218

229
<BaseLayout pgTitle={pgTitle}>
23-
<h2>... and my new Astro site!</h2>
10+
<h2>A research cases library for the PEPR eNSEMBLE project</h2>
2411

25-
{happy && <p>I am happy to learn Astro!</p>}
26-
27-
{goal === 3 ? <p>Tutorial is completed.</p>:<p>Tutorial should be finished in {goal} days</p>}
2812

2913
<p>I am working through Astro's introductory tutorial. This is the second page on my website, and it's the first one I built myself!</p>
3014

15+
<img src="https://hal.science/PEPR-ENSEMBLE/public/Banniere_PEPR_ensemble_v2.png" alt="Bannière PEPR PC2" />
16+
3117
<p>This site will update as I complete more of the tutorial, so keep checking back and see how my journey is going!</p>
3218

33-
<p>Here are a few facts about me:</p>
34-
<ul>
35-
<li>My name is {identity.firstName}.</li>
36-
<li>I live in {identity.country} and I work as a {identity.occupation}.</li>
37-
{identity.hobbies.length >= 2 &&
38-
<li>Two of my hobbies are: {identity.hobbies[0]} and {identity.hobbies[1]}</li>
39-
}
40-
</ul>
41-
<p>My skills are:</p>
42-
<ul>
43-
{skills.map((skill) => <li class="skill">{skill}</li>)}
44-
</ul>
19+
4520

4621
</BaseLayout>

tutorial/src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import '../styles/global.css';
33
import BaseLayout from '../layouts/BaseLayout.astro';
44
5-
const pgTitle = "My Astro Website Deployed with an Action";
5+
const pgTitle = "A research cases library";
66
---
77

88
<BaseLayout pgTitle={pgTitle}>
9-
<h2>My awesome blog subtitle</h2>
9+
<h2>Work in porgress -- here are coming the highlights</h2>
1010
</BaseLayout>

0 commit comments

Comments
 (0)