Skip to content

Commit

Permalink
Merge branch 'master' of github.com:assemblee-virtuelle/website
Browse files Browse the repository at this point in the history
  • Loading branch information
srosset81 committed Jan 9, 2025
2 parents e9e8c7b + 6056048 commit 509c4f5
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 14 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ jobs:
port: 22
script: |
cd deployment_semapps_av
docker system prune --force
docker compose build av-website
docker compose up -d av-website
3 changes: 3 additions & 0 deletions src/components/organizations/Members.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const { data: roles } = await dataProvider.getMany('Person', {
{associations?.map((association) => {
const member = members.find((m) => m.id === association['pair:membershipActor']);
const role = roles.find((r) => r.id === association['pair:membershipRole']);
if (member) {
return (
<div>
<a data-modal-target={member.id} data-modal-toggle={member.id} class="cursor-pointer">
Expand All @@ -42,8 +43,10 @@ const { data: roles } = await dataProvider.getMany('Person', {
<ActorModal actor={member} />
</div>
);
}
})}
</div>
</div>
)

}
2 changes: 1 addition & 1 deletion src/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ apps:
index: false

ui:
theme: 'system' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"
theme: 'light:only' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"

tokens:
default:
Expand Down
24 changes: 14 additions & 10 deletions src/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export const headerData = {
text: 'GitHub',
href: 'https://github.com/assemblee-virtuelle',
},
{
text: 'Matrix',
href: 'https://matrix.to/#/#virtual_assembly:matrix.org',
},
],
},
],
Expand All @@ -68,17 +72,17 @@ export const footerData = {
links: [
{ text: "Raison d'être et code social", href: '#' },
{ text: 'Organisations membres', href: '#' },
{ text: "L'équipe", href: '#' },
{ text: 'Histoire', href: '#' },
{ text: "L'équipe", href: '/organisations' },
{ text: 'Histoire', href: 'https://virtual-assembly.org/documents/https%3A%2F%2Fdata.virtual-assembly.org%2Fdocuments%2F6d255935-1515-495a-95c1-d458d6aaee22' },
],
},
{
title: 'Projets',
links: [
{ text: 'Applications', href: '#' },
{ text: 'Ontologies', href: '#' },
{ text: 'Méthodologies', href: '#' },
{ text: 'Innovations sociales', href: '#' },
{ text: 'Applications', href: '/projets/applications' },
{ text: 'Ontologies', href: '/projets/ontologies' },
{ text: 'Méthodologies', href: '/projets/methodologies' },
{ text: 'Innovations sociales', href: '/projets/innovations-sociales' },
],
},
{
Expand All @@ -88,10 +92,10 @@ export const footerData = {
{
title: 'Communauté',
links: [
{ text: 'Forum', href: '#' },
{ text: 'Chat', href: '#' },
{ text: 'PeerTube', href: '#' },
{ text: 'GitHub', href: '#' },
{ text: 'Forum', href: 'https://forums.assemblee-virtuelle.org/' },
{ text: 'Chat', href: 'https://forums.assemblee-virtuelle.org/chat/c/general/6' },
{ text: 'PeerTube', href: 'https://peertube.virtual-assembly.org/' },
{ text: 'GitHub', href: 'https://github.com/assemblee-virtuelle/' },
],
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog/[...page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const metadata = {

<Layout metadata={metadata}>
<section class="px-6 sm:px-6 py-12 sm:py-16 lg:py-20 mx-auto max-w-4xl">
<Headline subtitle="Les dernières actualités de l'Assemblée Virtuelle et des projets qu'elle porte">
<Headline subtitle="Les dernières actualités de l'Assemblée Virtuelle (AV) et des projets qu'elle porte">
Le Blog de l'AV
</Headline>
<BlogList posts={page.data} />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/organisations/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const metadata = {

<Layout metadata={metadata}>
<section class="px-6 py-12 sm:py-16 lg:py-20 mx-auto max-w-4xl">
<Headline subtitle="Les dernières actualités de l'Assemblée Virtuelle et des projets qu'elle porte">
Les organisation membres de l'AV
<Headline subtitle="(Entreprises, coopératives, associations ou collectif autour d'un projet)">
Les organisations membres de l'AV
</Headline>

{
Expand Down
File renamed without changes.

0 comments on commit 509c4f5

Please sign in to comment.