diff --git a/content/community_resources/_index.md b/content/community_resources/_index.md new file mode 100644 index 0000000..bd87163 --- /dev/null +++ b/content/community_resources/_index.md @@ -0,0 +1,7 @@ +--- +title: Community Resources +layout: community_resources/index +description: Resources from members and teams within the community +url: /resources +--- + diff --git a/content/community_resources/code/turing_tre/index.md b/content/community_resources/code/turing_tre/index.md new file mode 100644 index 0000000..76574cc --- /dev/null +++ b/content/community_resources/code/turing_tre/index.md @@ -0,0 +1,31 @@ +--- +title: "Alan Turing Institute TRE codebase (Azure)" +description: "Alan Turing Institute open source TRE infrastructure codebase (deployed on Azure)" +owners: +- The Alan Turing Institute +url: resources/turing_tre +tags: +- resource +tag_resource_types: +- code +tag_resource_topics: +- infrastructure +draft: false +layout: resources/resource_page +--- + +# Alan Turing Institute TRE codebase (Azure) + +**Type:** GitHub repository + +**Topic:** TRE Infrastructure + +**Link:** https://github.com/alan-turing-institute/data-safe-haven + +**Owner(s):** The Alan Turing Institute + +**Licence:** BSD 3-Clause License + +## Information + +... \ No newline at end of file diff --git a/content/community_resources/papers/testy/index.md b/content/community_resources/papers/testy/index.md new file mode 100644 index 0000000..f2c1574 --- /dev/null +++ b/content/community_resources/papers/testy/index.md @@ -0,0 +1,17 @@ +--- +title: "Test paper" +description: "Test paper" +owners: +- The Alan Turing Institute +draft: false +url: resources/paper +layout: resources/resource_page +tags: +- resource +tag_resource_types: +- papers +tag_resource_topics: +- information_governance +--- + +# Test paper \ No newline at end of file diff --git a/layouts/_default/community_resources/index.html b/layouts/_default/community_resources/index.html new file mode 100644 index 0000000..16292e5 --- /dev/null +++ b/layouts/_default/community_resources/index.html @@ -0,0 +1,126 @@ +{{ define "main" }} + + +
+

{{ .Title }}

+

{{ .Description }}

+

+ You can also find the resources and outputs from our working groups by visiting the working groups page +

+ + Visit working groups page + +
+ Note: This page is simply signposting to different resources available within the community - + presence of a resource on this page does not signify community endorsement. + Please evaluate each resource in your own terms! +
+
+
+

Resources (by type)

+

Community resources by the type of resource they are

+
+ {{ range $key, $taxonomy := .Site.Taxonomies.tag_resource_types }} + {{ $formatTitle := strings.Replace $key "_" " " }} +
+

+ +

+ {{ range $taxonomy.Pages }} +
+
+
+
    +
  • +
    +
    +
    +

    Title

    +
    +
    +

    Owner(s)

    +
    + +
    + {{ range .Params.owners }} + {{ . }}
    + {{ end }} +
    +
    +
    +
  • +
+
+
+
+ {{ end }} +
+ {{end}} +
+
+
+

Resources (by topic)

+

Community resources by the topic the resource is covering

+
+ {{ range $key, $taxonomy := .Site.Taxonomies.tag_resource_topics }} + {{ $formatTitle := strings.Replace $key "_" " " }} +
+

+ +

+ {{ range $taxonomy.Pages }} +
+
+
+
    +
  • +
    +
    +
    +

    Title

    +
    +
    +

    Owner(s)

    +
    + +
    + {{ range .Params.owners }} + {{ . }}
    + {{ end }} +
    +
    +
    +
  • +
+
+
+
+ {{ end }} +
+ {{end}} +
+
+{{ end }} \ No newline at end of file diff --git a/layouts/_default/community_resources/resource_page.html b/layouts/_default/community_resources/resource_page.html new file mode 100644 index 0000000..3291861 --- /dev/null +++ b/layouts/_default/community_resources/resource_page.html @@ -0,0 +1,6 @@ +{{ define "main" }} +
+ {{ .Content }} +
+ +{{ end }} \ No newline at end of file