Skip to content

Commit

Permalink
Merge pull request #5 from sa-tre/update-about
Browse files Browse the repository at this point in the history
Update about page, link from front page
  • Loading branch information
drchriscole authored Feb 19, 2025
2 parents e05be19 + cb9365a commit 39da78e
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 248 deletions.
7 changes: 5 additions & 2 deletions content/en/page/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ hideMeta: true

SATRE (Standardised Architecture for Trusted Research Environments) started as a DARE UK Driver Project working to standardise access to secure data in trusted research environments, and included University of Dundee, Alan Turing Institute, UCL, Ulster University, and Research Data Scotland.

Version 1.0 of SATRE was published last year, and we're now working on refining it with the goal of published version 2.0 this year.
Version 1.0 of SATRE was published in 2023, and we're now working on refining it with the goal of published version 2.0 this year.
We are also working with interested parties to help them evaluate or build their own TREs and related infrastructure.

- SATRE specification https://satre-specification.readthedocs.io/en/stable/
- SATRE specification https://satre-specification.readthedocs.io/
- SATRE GitHub organisation https://github.com/sa-tre
- Medium blog https://medium.com/satre
- SATRE email discussion list https://www.jiscmail.ac.uk/cgi-bin/wa-jisc.exe?SUBED1=UK-TRE-SATRE&A=1

Most of our events are open to everyone including the general public, and will be advertised via major TRE communities including [UK TRE](https://www.uktre.org/), [Safe Data Access Professionals](https://securedatagroup.org/), and [HDR UK](https://www.hdruk.ac.uk/) newsletters.
34 changes: 10 additions & 24 deletions hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ DefaultContentLanguageInSubdir = true
[languages.en.params]
introTitle = "Standard Architecture for Trusted Research Environments (SATRE)"
introSubtitle = "Working to standardise access to secure data in trusted research environments."
introLinkToContent = "👉 <a href='./page/about'>See the about page to find out more.</a>"
introPhoto = "satre_logo_dark.svg"
introLinkToPage = "page/about"
logo = "satre_logo_dark.svg"
[[languages.en.menu.main]]
name = "News"
Expand Down Expand Up @@ -54,7 +56,7 @@ DefaultContentLanguageInSubdir = true
]

# Custom copyright - optional
copyright = "Copyright © 2024 - SATRE - CC-BY-4.0"
copyright = "Copyright © 2025 - SATRE - CC-BY-4.0"
favicon = "/favicon.svg"

# Color for the intro details and social links block, not applicable for dark mode
Expand Down Expand Up @@ -83,29 +85,6 @@ DefaultContentLanguageInSubdir = true
# This setting can also be in page's markdown file
hidePageThumbnail = true

# Comments system
[params.comments]
# Supports disqus, giscus and utterances
# Check hugo docs for setting up disqus
system = "giscus"

# Options for giscus, exclude hyphens
repo = ""
repoid = ""
category = ""
categoryid = ""
mapping = ""
strict = ""
reactionsenabled = ""
emitmetadata = ""
inputposition = ""
theme = ""

# Options for utterances, exclude hyphens
# repo = ""
# issueterm = ""
# theme = ""

[params.homepage.social]
# Global params common for both languages
title = "Follow me"
Expand All @@ -114,12 +93,19 @@ DefaultContentLanguageInSubdir = true
[[params.homepage.social.icons]]
website = "github"
url = "https://github.com/sa-tre"
label = "GitHub"
[[params.homepage.social.icons]]
website = "medium"
url = "https://medium.com/satre"
label = "Medium"
[[params.homepage.social.icons]]
website = "youtube"
url = "https://www.youtube.com/watch?v=auExNHEGwcc"
label = "YouTube"
[[params.homepage.social.icons]]
website = "email"
url = "https://www.jiscmail.ac.uk/cgi-bin/wa-jisc.exe?SUBED1=UK-TRE-SATRE&A=1"
label = "Mailing list"

[[menu.main]]
name = "About"
Expand Down
4 changes: 4 additions & 0 deletions themes/blist-satre/assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,8 @@
a:empty {
display: none;
}

a {
@apply hover:text-red-600;
}
}
3 changes: 2 additions & 1 deletion themes/blist-satre/layouts/partials/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<div>
<h1 class="text-4xl font-bold mb-4">{{ .Site.Params.introTitle | safeHTML}}</h1>
<p class="font-light text-lg">{{ .Site.Params.introSubtitle | safeHTML}}</p>
<p class="font-bold text-lg">{{ .Site.Params.introLinkToContent | safeHTML}}</p>
</div>
<img class="rounded-lg shadow-sm" src="{{ .Site.Params.introPhoto | relURL }}" alt="{{ .Site.Title }}" />
<a href="{{ relref . .Site.Params.introLinkToPage }}"><img class="rounded-lg shadow-sm" src="{{ .Site.Params.introPhoto | relURL }}" alt="{{ .Site.Title }}" /></a>
</div>
</section>
Loading

0 comments on commit 39da78e

Please sign in to comment.