Skip to content

Commit

Permalink
🔃 Move Acknowledgments before Data Availability (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanc1 authored Nov 17, 2023
1 parent 239c5e2 commit 23b14dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/shy-shrimps-perform.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@myst-theme/site': patch
---

Move acknowledgements above data availability.
2 changes: 1 addition & 1 deletion packages/site/src/components/Backmatter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import type { KnownParts } from '../utils.js';
export function BackmatterParts({ parts }: { parts: KnownParts }) {
return (
<>
<Backmatter title="Acknowledgments" id="acknowledgments" content={parts.acknowledgments} />
<Backmatter
title="Data Availability"
id="data-availability"
content={parts.data_availability}
/>
<Backmatter title="Acknowledgments" id="acknowledgments" content={parts.acknowledgments} />
</>
);
}
Expand Down

0 comments on commit 23b14dd

Please sign in to comment.