Skip to content

Commit 0f2d91f

Browse files
committed
Accesibility adjustements and small revisions #23
1 parent 61f4444 commit 0f2d91f

File tree

15 files changed

+21
-18
lines changed

15 files changed

+21
-18
lines changed

src/data/instances.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{
1818
"title": "Jena Experiment",
1919
"url": "http://the-jena-experiment.de/",
20-
"image": "Partner_Logo_JenaExperiment.gif"
20+
"image": "Partner_Logo_JenaExperiment.webp"
2121
},
2222
{
2323
"title": "ATTO – Amazon Tall Tower Observatory",
@@ -62,7 +62,7 @@
6262
{
6363
"title": "NOA",
6464
"url": "https://noa1375.inf-bb.uni-jena.de/",
65-
"image": "noa.jfif"
65+
"image": "noa.webp"
6666
},
6767
{
6868
"title": "SoilBON",

src/data/partners.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
{
1818
"title": "TUM",
1919
"url": "https://www.tum.de",
20-
"image": "Partner_Logo_TUM.gif"
20+
"image": "Partner_Logo_TUM.webp"
2121
}
2222
]

src/data/projects.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{
2323
"title": "Jena Experiment",
2424
"url": "http://the-jena-experiment.de/",
25-
"image": "Partner_Logo_JenaExperiment.gif"
25+
"image": "Partner_Logo_JenaExperiment.webp"
2626
},
2727
{
2828
"title": "ATTO – Amazon Tall Tower Observatory",

src/lib/Footer.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
<Row style="padding-bottom:10px">
2323
<Col xs="6">
2424
<div>
25-
<img src={base + '/images/dfg_logo_schriftzug_gray.png'} alt="dfg_logo" width="300px" />
25+
<img src={base + '/images/dfg_logo_schriftzug_gray.png'} alt="dfg logo" width="300px" />
2626
</div>
2727
</Col>
2828
<Col xs="6">
29-
<div class="text-end">
30-
<img src={base + '/images/NFDI4Biodiversity.png'} alt="nfdi4bio_logo" width="300px" />
29+
<div class="text-end">
30+
<img src={base + '/images/NFDI4Biodiversity.png'} alt="nfdi4bio logo" width="300px" />
3131
</div>
3232
</Col>
3333
</Row>
3434
<div class="text-end">
3535
This work was supported by the German Research Foundation (DFG) within the project “Establishment of the National Research Data Infrastructure (NFDI)” in the consortium NFDI4Biodiversity (project number 442032008).
3636
</div>
3737
</Col>
38-
38+
3939
</Row>
4040
</div>
4141
</footer>

src/lib/components/Milestone.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<Row>
3434
<Col xs="5" sm="5" md="5"
3535
><h3>
36-
<img src={creator.avatar_url} style="width:20px" />
36+
<img src={creator.avatar_url} style="width:20px" alt="avatar {creator.login}" />
3737
<a href={creator.html_url}>{creator.login}</a>
3838
</h3></Col
3939
>

src/lib/components/People.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</script>
1111

1212
<div class="card" style="width: 18rem;">
13-
<img src="{base}/images/people/{image}" class="card-img-top" alt="..." />
13+
<img src="{base}/images/people/{image}" class="card-img-top" alt="image of {name}" />
1414
<div class="card-body">
1515
<h5 class="card-title">{name}</h5>
1616
<hr />

src/lib/components/Release.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<Row>
2020
<Col xs="2"
2121
><h3>
22-
<img src={author.avatar_url} style="width:20px" />
22+
<img src={author.avatar_url} style="width:20px" alt="avatar {author.login}" />
2323
<a href={author.html_url}>{author.login}</a>
2424
</h3></Col
2525
>

src/lib/header/Header.svelte

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<header>
4747
<Navbar color="light" light expand="md">
4848
<NavbarBrand href="{base}/">
49-
<img src={base + '/Logo_BEXIS_rgb_2600x830.png'} alt="logo" width="200px" /></NavbarBrand
49+
<img src={base + '/Logo_BEXIS_rgb_2600x830.png'} alt="BEXIS2 logo" width="200px" /></NavbarBrand
5050
>
5151
<NavbarToggler on:click={() => (isOpen = !isOpen)} />
5252
<Collapse {isOpen} navbar expand="md" on:update={handleUpdate}>
@@ -63,7 +63,7 @@
6363
<DropdownMenu end>
6464
<DropdownItem href={base + '/software/features'}>Features</DropdownItem>
6565
<DropdownItem href={base + '/software/releases'}>Releases</DropdownItem>
66-
<DropdownItem href={base + '/software/milestones'}>Milestones</DropdownItem>
66+
<!--<DropdownItem href={base + '/software/milestones'}>Milestones</DropdownItem>-->
6767
<DropdownItem href={base + '/software/modules'}>Modules Overview</DropdownItem>
6868
<DropdownItem divider />
6969
<DropdownItem href="https://demo.bexis2.uni-jena.de/">Live Demo</DropdownItem>
@@ -78,6 +78,7 @@
7878
<DropdownItem href={base + '/resources/manuals'}>Manuals</DropdownItem>
7979
<DropdownItem href={base + '/resources/techtalks'}>Tech Talks</DropdownItem>
8080
<DropdownItem href={base + '/resources/publications'}>Publications</DropdownItem>
81+
<DropdownItem divider />
8182
<DropdownItem href="https://fusion.cs.uni-jena.de/bppCM/index.htm" target="_blank"
8283
>Conceptional Model</DropdownItem
8384
>
@@ -101,7 +102,7 @@
101102
>System Requirements</DropdownItem
102103
>
103104
<DropdownItem href={base + '/knowledgebase/featurelist'}>All Features</DropdownItem>
104-
<DropdownItem href={base + '/knowledgebase/glossary'}>Glossary</DropdownItem>
105+
<!--<DropdownItem href={base + '/knowledgebase/glossary'}>Glossary</DropdownItem>-->
105106
</DropdownMenu>
106107
</Dropdown>
107108

src/routes/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<title>Home</title>
1414
</svelte:head>
1515

16-
<img src={base + '/images/Bexis_Home_Header.gif'} alt="banner" width="100%" />
16+
<img src={base + '/images/Bexis_Home_Header.webp'} alt="BEXIS2 banner" width="100%" />
1717

1818
<Row>
1919
<Col xs="12" sm="6" md="4">
@@ -33,7 +33,7 @@
3333
</Col>
3434
<Col xs="12" sm="6" md="4">
3535
<Card title="Latest Releases">
36-
Manage your research data now. BEXIS is easy to run and simple to maintain. <a
36+
Manage your research data now. BEXIS2 is easy to run and simple to maintain. <a
3737
href="{base}/software/releases"
3838
>Download the latest version
3939
</a> of BEXIS2.

src/routes/community/partnersAndInstances/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
</svelte:head>
2020

2121
<ImageLinkList
22-
title="BEXIS ++ Partners"
23-
description="The following organisation are part of the BExIS++ core project."
22+
title="BEXIS2 Partners"
23+
description="The following organisation are part of the BEXIS2 core project."
2424
list={partnersJson}
2525
/>
2626

0 commit comments

Comments
 (0)