-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Frontpage: show evaluations as well as blog posts
- Loading branch information
Showing
4 changed files
with
53 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
author: SATRE | ||
title: Evaluations | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,17 @@ | ||
--- | ||
author: SATRE | ||
title: About Me | ||
date: 2021-07-15 | ||
title: About Us | ||
date: 2024-01-01 | ||
description: | ||
keywords: ["about-us", "about-hugo", "contact"] | ||
keywords: ["about-us", "tre", "contact"] | ||
type: about | ||
--- | ||
|
||
Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows. | ||
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. | ||
|
||
Hugo makes use of a variety of open source projects including: | ||
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. | ||
We are also working with interested parties to help them evaluate or build their own TREs and related infrastructure. | ||
|
||
- https://github.com/yuin/goldmark | ||
- https://github.com/alecthomas/chroma | ||
- https://github.com/muesli/smartcrop | ||
- https://github.com/spf13/cobra | ||
- https://github.com/spf13/viper | ||
|
||
Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages. | ||
|
||
Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases. | ||
|
||
Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider. | ||
|
||
Learn more and contribute on [GitHub](https://github.com/gohugoio). | ||
- SATRE specification https://satre-specification.readthedocs.io/en/stable/ | ||
- SATRE GitHub organisation https://github.com/sa-tre | ||
- Medium blog https://medium.com/satre |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
{{ define "main" }} | ||
{{- partial "intro.html" . -}} | ||
{{ $frontBundle := .Site.Params.frontBundle | default "blog" }} | ||
<div class="p-6"> | ||
<h2 class="text-2xl font-bold mb-2">{{ strings.Title $frontBundle }}</h2> | ||
<div class="container p-6 mx-auto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 lg:gap-8"> | ||
{{ range first 6 (where .Site.RegularPages.ByDate.Reverse "Type" $frontBundle) }} | ||
{{- partial "blog-card.html" . -}} | ||
{{ end }} | ||
</div> | ||
</div> | ||
|
||
{{ $frontBundle2 := .Site.Params.frontBundle2 }} | ||
{{ if $frontBundle2 }} | ||
<div class="p-6"> | ||
<h2 class="text-2xl font-bold mb-2">{{ strings.Title $frontBundle2 }}</h2> | ||
<div class="container p-6 mx-auto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 lg:gap-8"> | ||
{{ range first 6 (where .Site.RegularPages.ByDate.Reverse "Type" $frontBundle2) }} | ||
{{- partial "blog-card.html" . -}} | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
</div> | ||
|
||
{{ if gt (len (where .Site.RegularPages.ByDate.Reverse "Type" $frontBundle2)) 6 }} | ||
<div class="text-center mb-8"> | ||
<a class="px-8 py-3 rounded transition-colors {{ .Site.Params.ascentColor | default "bg-pink-50" }} | ||
text-gray-500 hover:text-gray-800 dark:bg-gray-900 dark:text-gray-400 dark:hover:text-white" | ||
href="{{ (index (.Site.Menus.main) 0).URL | absLangURL }}" lang="{{ .Lang }}"> | ||
{{ i18n "morePosts" }} | ||
</a> | ||
</div> | ||
{{ end }} | ||
|
||
{{- partial "social.html" . -}} | ||
{{ end }} |