Skip to content

Commit

Permalink
Merge pull request #20 from ScottLogic/resources-page
Browse files Browse the repository at this point in the history
Add unpublished resources page
  • Loading branch information
mgriffin-scottlogic authored Feb 26, 2024
2 parents f9c433e + 5ea8345 commit 0183c4f
Show file tree
Hide file tree
Showing 14 changed files with 20 additions and 2 deletions.
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ postcss:
cache: false

collections:
glossary:
- glossary
- resources

# collections_dir: glossary

Expand Down
2 changes: 1 addition & 1 deletion _glossary/software_carbon_intensity.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
title: Software Carbon Intensity (SCI)
---

A methodology developed by the [Green Software Foundation](#green-software-foundation-gsf) to help calculate and track the impact of software, it is designed to be widely applicable and calculatable with a bias towards actions that eliminate carbon emissions. It considers both [operational](#operational-carbon) and [embodied carbon](#embodied-carbon) and has a scaling factor (R) that allows for a value that is independent of the size of the system which could be for example per transaction or per user. The inclusion of embodied carbon ensures that this value can never reach zero but gives a value that can be tracked to validate improvements over time.
A methodology developed by the [Green Software Foundation](/resources#green-software-foundation-gsf) to help calculate and track the impact of software, it is designed to be widely applicable and calculatable with a bias towards actions that eliminate carbon emissions. It considers both [operational](#operational-carbon) and [embodied carbon](#embodied-carbon) and has a scaling factor (R) that allows for a value that is independent of the size of the system which could be for example per transaction or per user. The inclusion of embodied carbon ensures that this value can never reach zero but gives a value that can be tracked to validate improvements over time.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions pages/resources.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: default
title: Resources
permalink: /resources
published: false
---

# Resources

{% assign items = site.resources %}

{% for item in items %}
{% include linkedHeading.html heading=item.title level=2 %}
{{ item.content | remove: '<p>' | remove: '</p>' }}
{% if item.link and item.linktext%}<small>[{{ item.linktext }}<svg aria-hidden="true" class="inline size-4 fill-black ml-1"><use href="./assets/images/icons.svg#open-in-new"></use></svg>]({{ item.link }}){:target="_blank"}</small>{% endif %}
{% endfor %}
1 change: 1 addition & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = {
'./_layouts/**/*.html',
'./_posts/*.md',
'./_glossary/*.md',
'./_resources/*.md',
'./pages/*.md',
'./*.md',
'./*.html',
Expand Down

0 comments on commit 0183c4f

Please sign in to comment.