mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 04:45:47 +01:00
feat(website): add link to older versions
This commit is contained in:
@@ -83,6 +83,16 @@
|
|||||||
.download-card:first-of-type { --accent-color: var(--brand-1); }
|
.download-card:first-of-type { --accent-color: var(--brand-1); }
|
||||||
.download-card:nth-of-type(2) { --accent-color: var(--brand-2); }
|
.download-card:nth-of-type(2) { --accent-color: var(--brand-2); }
|
||||||
.download-card:last-of-type { --accent-color: var(--brand-3); }
|
.download-card:last-of-type { --accent-color: var(--brand-3); }
|
||||||
|
|
||||||
|
.download-footer {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 1em;
|
||||||
|
font-size: 0.9em;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--muted-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.download-server .download-card {
|
.download-server .download-card {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ export default function DownloadPage() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Section title={`Download the desktop application (v${packageJson.version})`} className="fill accented">
|
<Section title={`Download the desktop application (v${packageJson.version})`} className="fill accented download-desktop">
|
||||||
<div className="architecture-switch">
|
<div className="architecture-switch">
|
||||||
<span>Architecture:</span>
|
<span>Architecture:</span>
|
||||||
|
|
||||||
@@ -33,6 +33,10 @@ export default function DownloadPage() {
|
|||||||
<div className="grid-3-cols download-desktop">
|
<div className="grid-3-cols download-desktop">
|
||||||
{Object.entries(downloadMatrix.desktop).map(entry => <DownloadCard app="desktop" arch={currentArch} entry={entry} />)}
|
{Object.entries(downloadMatrix.desktop).map(entry => <DownloadCard app="desktop" arch={currentArch} entry={entry} />)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="download-footer">
|
||||||
|
<Link href="https://github.com/TriliumNext/Trilium/releases/" openExternally>See older releases</Link>
|
||||||
|
</div>
|
||||||
</Section>
|
</Section>
|
||||||
|
|
||||||
<Section title="Set up a server for access on multiple devices">
|
<Section title="Set up a server for access on multiple devices">
|
||||||
|
|||||||
Reference in New Issue
Block a user