-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
111 additions
and
19 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
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,6 @@ | ||
--- | ||
title: Get Involved | ||
layout: getinvolved/index | ||
description: Great to have you here! Please see the different ways you can get involved below | ||
url: /getinvolved | ||
--- |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ title: "Charter" | |
|
||
## Background | ||
|
||
xxxxx | ||
xxxx | ||
|
||
## Targets | ||
|
||
|
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,47 @@ | ||
{{ define "main" }} | ||
|
||
<section class="section padded container"> | ||
<h1>{{ .Title }}</h1> | ||
<p>{{ .Description }}</p> | ||
</section> | ||
|
||
<section class="section padded container my-3"> | ||
<div class="row justify-content-center text-center mt-lg-3"> | ||
<div class="col-lg-4"> | ||
<svg xmlns='http://www.w3.org/2000/svg' class='feather text-violet feather-big' width="4em" height="4em"> | ||
<use href="{{ `images/feather/feather-sprite.svg#mail` | relURL }}" /> | ||
</svg> | ||
<h3 class="h3">Join the mailing list</h3> | ||
<p>Our primary source for community announcements and discussions</p> | ||
<a type="'button" class="btn btn-branded" | ||
href="https://www.jiscmail.ac.uk/cgi-bin/wa-jisc.exe?SUBED1=UK-TRE-COMM&A=1" target="_blank">Join | ||
list</a> | ||
</div> | ||
<div class="col-lg-4"> | ||
<svg xmlns='http://www.w3.org/2000/svg' class='feather text-violet feather-big' width="4em" height="4em"> | ||
<use href="{{ `images/feather/feather-sprite.svg#slack` | relURL }}" /> | ||
</svg> | ||
<h3 class="h3">Chat to us on Slack</h3> | ||
<p>A more informal space for working groups and community members to chat directly</p> | ||
<a type="'button" class="btn btn-branded" | ||
href="https://join.slack.com/t/uktrecommunity/shared_invite/zt-26r7jz25d-J5iV0XoqyLepEiKk4XpJVg" | ||
target="_blank">Join | ||
Slack</a> | ||
</div> | ||
<div class="col-lg-4"> | ||
<svg xmlns='http://www.w3.org/2000/svg' class='feather text-violet feather-big' width="4em" height="4em"> | ||
<use href="{{ `images/feather/feather-sprite.svg#github` | relURL }}" /> | ||
</svg> | ||
<h3 class="h3">Star our repos</h3> | ||
<p>We have a GitHub organisation, where we track all community tasks and discuss thorny issues</p> | ||
<a type="'button" class="btn btn-branded" href="https://github.com/uk-tre" target="_blank">Star GitHub | ||
repos</a> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section class="section padded container"> | ||
Or <a href="mailto:[email protected]">send us an email</a>. | ||
</section> | ||
|
||
{{ end }} |
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,30 +1,30 @@ | ||
{{ define "main" }} | ||
|
||
<section class="section bd-masthead"> | ||
<div class="container-xxl"> | ||
<div class="col-md-8 mx-auto text-center my-5"> | ||
<img class="d-block mx-auto mb-3 img-fit" src="{{ `images/uktre-logo.svg` | relURL }}" alt="UK TRE Logo"> | ||
<h1 class="display-4 fw-semibold mb-3">Welcome to the UK TRE Community!</h1> | ||
<p class="lead mb-4">{{ .Site.Params.Description }}</p> | ||
<button type="button" class="btn btn-branded">Get involved</button> | ||
</div> | ||
<div class="container-xxl"> | ||
<div class="col-md-8 mx-auto text-center my-5"> | ||
<img class="d-block mx-auto mb-3 img-fit" src="{{ `images/uktre-logo.svg` | relURL }}" alt="UK TRE Logo"> | ||
<h1 class="display-4 fw-semibold mb-3">Welcome to the UK TRE Community!</h1> | ||
<p class="lead mb-4">{{ .Site.Params.Description }}</p> | ||
<a type="button" class="btn btn-branded" href="/getinvolved">Get involved</a> | ||
</div> | ||
</section> | ||
</div> | ||
</section> | ||
|
||
<section class="section padded container my-3"> | ||
{{ partial "features" . }} | ||
{{ partial "features" . }} | ||
</section> | ||
|
||
<section class="section padded container my-2"> | ||
{{ partial "blurb" . }} | ||
{{ partial "blurb" . }} | ||
</section> | ||
|
||
<section class="section padded container my-3"> | ||
{{ partial "actions" . }} | ||
{{ partial "actions" . }} | ||
</section> | ||
|
||
<section class="section padded container"> | ||
{{ partial "contact" . }} | ||
</section> | ||
{{ partial "contact" . }} | ||
</section> | ||
|
||
{{ end }} |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div class="text-center"> | ||
<h1 class="text-secondary">Get involved</h1> | ||
<p>We'd love for you to get involved with the community!</p> | ||
<p>See the Get Involved page for details on how to start with the community.</p> | ||
<p>See the <a href="/getinvolved">Get Involved</a> page for details on how to start with the community.</p> | ||
<p>Or simply use the button below to sign up for our mailing list to keep up with the latest developments!</p> | ||
<button type=button class="btn btn-branded"> Sign up for the mailing list | ||
</div> |
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 @@ | ||
--- | ||
title: "<INSERT TITLE OF RESOURCE>" | ||
description: "<INSERT SHORT DESCRIPTION OF RESOURCE>" | ||
owners: | ||
- <INSERT OWNER OF RESOURCE> | ||
- (optional - complete or delete) <INSERT OWNER OF RESOURCE> | ||
- (optional - complete or delete) <INSERT OWNER OF RESOURCE> | ||
url: resources/<INSERT URL OF RESOURCE> | ||
tags: | ||
- resource | ||
tag_resource_types: | ||
- <INSERT TAG FOR TYPE OF RESOURCE IN LOWER CASE - DEFAULT TAGS ["code", "papers", "videos", "articles", "templates"]> | ||
- (optional - complete or delete) <INSERT TAG FOR TYPE OF RESOURCE IN LOWER CASE - DEFAULT TAGS ["code", "papers", "videos", "articles", "templates"]> | ||
- (optional - complete or delete) <INSERT TAG FOR TYPE OF RESOURCE IN LOWER CASE - DEFAULT TAGS ["code", "papers", "videos", "articles", "templates"]> | ||
tag_resource_topics: | ||
- <INSERT TAG FOR TYPE OF RESOURCE IN LOWER CASE - DEFAULT TAGS ["tre_infrastructure", "toolkits_and_packages", "information_governance"] | ||
- (optional - complete or delete) <INSERT TAG FOR TYPE OF RESOURCE IN LOWER CASE - DEFAULT TAGS ["tre_infrastructure", "toolkits_and_packages", "information_governance"] | ||
- (optional - complete or delete) <INSERT TAG FOR TYPE OF RESOURCE IN LOWER CASE - DEFAULT TAGS ["tre_infrastructure", "toolkits_and_packages", "information_governance"] | ||
draft: false | ||
layout: resources/resource_page | ||
--- | ||
|
||
# [INSERT TITLE OF RESOURCE] | ||
|
||
**Type:** [INSERT TYPE OF RESOURCE] | ||
|
||
**Topic:** [INSERT TOPIC RESOURCE IS COVERING] | ||
|
||
**Link:** [INSERT LINK TO RESOURCE] | ||
|
||
**Owner(s):** [INSERT OWNERS OF RESOURCE] | ||
|
||
**Licence:** [INSERT LICENCE OF RESOURCE] | ||
|
||
## Information | ||
|
||
[ADD ANY ADDITIONAL INFORMATION HERE - the more detail the better for our community!] |