Skip to content

Commit

Permalink
Add link to accessibility statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Phu2 committed Jul 9, 2024
1 parent af61c62 commit f634813
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 8 deletions.
5 changes: 2 additions & 3 deletions gatsby/lobid/src/components/footer.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export default class Footer extends React.Component {
</span>
</div>
</div>
</div >
)
}
)
}
}
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/member.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class Member extends React.Component {
</p>
{this.state.infoToggledProjects ? this.getFormerProjects() : ""}
<Publications pubs={this.props.pubs} publications={this.props.publications} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} accessibility={this.props.accessibility} />
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/product.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class Product extends React.Component {
{this.props.product.membership.length > 0 && <p className="lead">{this.props.memberName}</p>}
<Membership membership={this.props.product.membership.filter((member) => !member.endDate).map((member) => [member, getMemberDetails(this.props.members, member)])} lang={this.props.lang}/>
<Publications pubs={this.props.pubs} publications={this.props.publications} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} accessibility={this.props.accessibility} />
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/project.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class Project extends React.Component {
{this.props.project.membership.length > 0 && <p className="lead">{this.props.memberName}</p>}
<Membership membership={this.props.project.membership.filter((member) => !member.endDate).map((member) => [member, getMemberDetails(this.props.members, member)])} lang={this.props.lang}/>
<Publications pubs={this.props.pubs} publications={this.props.publications} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} accessibility={this.props.accessibility} />
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/team.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export class Team extends React.Component {
</div>
</div>
</div>
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} />
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} accessibility={this.props.accessibility} />
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/visual.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class Visual extends Component {
</p>
<div id="lobid-network" ref={this.appRef} />
</div>
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy}/>
<Footer companyDetails={this.props.companyDetails} privacy={this.props.privacy} accessibility={this.props.accessibility} />
</div>
);
}
Expand Down
1 change: 1 addition & 0 deletions gatsby/lobid/src/templates/member.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default function MemberPage({ data, location, pageContext }) {
memberName="Mitglieder"
memberFormerName="Ehemalige"
companyDetails="Impressum"
accessibility="Barrierefreiheit"
privacy="Datenschutz"
contactPointId="mailto:[email protected]"
lang="de"
Expand Down
1 change: 1 addition & 0 deletions gatsby/lobid/src/templates/product.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default function ProductPage({ data, location, pageContext }) {
isRelatedTo="Bezug"
companyDetails="Impressum"
privacy="Datenschutz"
accessibility="Barrierefreiheit"
contactPointId="mailto:[email protected]"
memberName="Team"
lang="de"
Expand Down
1 change: 1 addition & 0 deletions gatsby/lobid/src/templates/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export default function ProjectPage({ data, location, pageContext }) {
result="Ergebnis"
companyDetails="Impressum"
privacy="Datenschutz"
accessibility="Barrierefreiheit"
contactPointId="mailto:[email protected]"
memberName="Team"
lang="de"
Expand Down
1 change: 1 addition & 0 deletions gatsby/lobid/src/templates/team.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default ({ data, location, pageContext }) => {
memberName={pageContext.lang==="de"?"Mitglieder":"Members"}
memberFormerName={pageContext.lang==="de"?"Ehemalige":"Former members"}
companyDetails={pageContext.lang==="de"?"Impressum":"Imprint"}
accessibility={pageContext.lang==="de"?"Barrierefreiheit":"Accessibility"}
privacy={pageContext.lang==="de"?"Datenschutz":"Privacy"}
contactPointId="mailto:[email protected]"
/>
Expand Down

0 comments on commit f634813

Please sign in to comment.