Skip to content

Commit 3bf2166

Browse files
committed
accessibility fixes #23
1 parent 235d589 commit 3bf2166

File tree

9 files changed

+17
-11
lines changed

9 files changed

+17
-11
lines changed

src/lib/bibtext.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ @inproceedings{CHAMANARA201212
102102
103103
@inproceedings{10.1145/2389686.2389690,
104104
title = {SciQL: A Query Language for Unified Scientific Data Processing and Management},
105-
author = {Chamanara, Javad and K\"{o}nig-Ries, Birgitta},
105+
authors = {Chamanara, Javad and König-Ries, Birgitta},
106106
source = {PIKM '12: Proceedings of the 5th Ph.D. workshop on Information and knowledge},
107107
place = {Maui, Hawaii, USA},
108108
date = {2012-11-02},

src/routes/about/contactus/+page.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
<title>Contact Us</title>
77
</svelte:head>
88

9-
<h2>Contact Us</h2>
9+
<h1>Contact Us</h1>
1010

11-
<h3>Contact Information</h3>
11+
<h2>Contact Information</h2>
1212
<p>
1313
If you have any questions related to the usage or the development of BEXIS2, please join our <a
1414
href={base + '/community/mailinglists'}>mailing lists</a
1515
>. <br />
1616
Contact us at <b>[email protected]</b> if you have any further questions or suggestions.
1717
</p>
1818

19-
<h3>Mailing Address:</h3>
19+
<h2>Mailing Address:</h2>
2020
<p>
2121
Friedrich-Schiller-Universität Jena <br />
2222
Institut für Informatik <br />
@@ -25,7 +25,7 @@
2525
D-07743 Jena <br />
2626
</p>
2727

28-
<h3>Visiting Address:</h3>
28+
<h2>Visiting Address:</h2>
2929
<p>
3030
Friedrich-Schiller-Universität Jena <br />
3131
Institut für Informatik <br />

src/routes/about/jobs/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import Job from '$lib/components/Job.svelte';
44
</script>
55

6-
<h2>Jobs</h2>
6+
<h1>Jobs</h1>
77

88
{#if jobs}
99
<!-- content here -->

src/routes/about/people/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<hr />
2323
<br />
2424

25-
<h2>Contributers</h2>
25+
<h1>Contributers</h1>
2626

2727
<Row>
2828
{#if contributers}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<title>Mailing Lists</title>
33
</svelte:head>
44

5-
<h2>Mailing Lists</h2>
5+
<h1>Mailing Lists</h1>
66
<p>
77
You are most welcome to join our mailing lists For any further discussion on BEXIS2. Both lists
88
are archived at mail-archive.com, so all posts are public and searchable. We invite you not only

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<title>News</title>
1313
</svelte:head>
1414

15+
<h1>News</h1>
16+
1517
<Row>
1618
{#if result}
1719
{#each result as news}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<title>Partners & Instances</title>
1919
</svelte:head>
2020

21+
<h1>Partners & Instances</h1>
22+
2123
<ImageLinkList
2224
title="BEXIS2 Partners"
2325
description="The following organisation are part of the BEXIS2 core project."

src/routes/knowledgebase/requirements/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h2>System Requirements</h2>
1+
<h1>System Requirements</h1>
22

33
<p>
44
<b>Operating System:</b> Windows based (e.g. Windows 7, Windows Server 2016 or higher) <br />

src/routes/resources/publications/+page.svelte

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88
<title>Publications</title>
99
</svelte:head>
1010

11+
<h1>Publications</h1>
12+
1113
{#if data}
12-
<ol>
14+
1315
{#each data.body as pub}
1416
<Publication {...pub} />
1517
{/each}
16-
</ol>
18+
1719
{:else}
1820
<b>...loading</b>
1921
{/if}

0 commit comments

Comments
 (0)