Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit 31e0e25

Browse files
authored
Merge pull request #4 from reedcodes/20231120-wpam-updates
refresh content
2 parents 883434e + a108b17 commit 31e0e25

24 files changed

+911
-460
lines changed

package-lock.json

Lines changed: 846 additions & 389 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"version": "2.0.0",
44
"description": "Sample KSS",
55
"devDependencies": {
6-
"a11y-color-tokens": "^0.6.0",
6+
"a11y-color-tokens": "^0.7.0",
77
"kss": "^3.1.0",
88
"npm-run-all": "^4.1.5",
9-
"sass": "^1.55.0"
9+
"sass": "^1.69.5"
1010
},
1111
"scripts": {
1212
"color-tokens": "a11y-color-tokens --outputDirPath='./src/color' --colorTokensPath='./config/color-tokens.js'",

src/card/card.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"card_heading": "Scelerisque nam eros parturient",
3-
"card_description": "Bibendum parturient laoreet a a purus augue hac vestibulum ac sociosqu felis integer.",
4-
"card_link_text": "A ut parturient",
5-
"card_link_url": "index.html"
2+
"card_heading": "Posttextual conceptualism",
3+
"card_description": "Lacan uses the term ‘posttextual conceptualism’ to denote the difference between society and sexual identity.",
4+
"card_link_text": "Neodialectic conceptual theory",
5+
"card_link_url": "https://example.com/"
66
}

src/card/card.twig

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<div class="card">
2-
{% if card_heading %}
3-
{% include "@text/heading.twig" with {
4-
heading_level: 3,
5-
heading_text: card_heading
6-
} %}
7-
{% endif %}
2+
{%- include "@text/heading.twig" with {
3+
heading_level: 3,
4+
heading_text: card_heading
5+
} -%}
86

9-
{% include "@text/paragraph.twig" with { paragraph_text: card_description } %}
7+
{%- include "@text/paragraph.twig" with { paragraph_text: card_description } -%}
108

11-
{% include "@link/link.twig" with {
9+
{%- include "@link/link.twig" with {
1210
modifier_class: "cta-link",
1311
link_text: card_link_text,
1412
link_url: card_link_url
15-
} %}
13+
} -%}
1614
</div>

src/layout/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
//
9595
// A search bar is an input field that can find content across the site.
9696
//
97-
// Markup: eg-search.twig
97+
// Markup: search.twig
9898
//
9999
// Weight: 3
100100
//

src/layout/card-grid.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"cards": [
33
{
4-
"card_heading": "Scelerisque nam eros",
5-
"card_description": "Bibendum parturient laoreet a a purus augue hac vestibulum ac sociosqu felis integer.",
6-
"card_link_text": "A ut parturient",
7-
"card_link_url": "#"
4+
"card_heading": "Subtextual theory",
5+
"card_description": "Sartre promotes the use of subtextual theory to deconstruct class.",
6+
"card_link_text": "Semiotic rationalism",
7+
"card_link_url": "https://example.com/"
88
},
99
{
10-
"card_heading": "Platea erat suspendisse",
11-
"card_description": "Id cubilia scelerisque eu dictum enim mus suscipit a dignissim rutrum id sagittis lacinia ac etiam.",
12-
"card_link_text": "Netus lacinia in aliquet",
13-
"card_link_url": "#"
10+
"card_heading": "Subcultural narrative",
11+
"card_description": "Bataille suggests the use of subcultural narrative to attack outmoded perceptions of sexual identity.",
12+
"card_link_text": "Semiotic rationalism",
13+
"card_link_url": "https://example.com/"
1414
},
1515
{
16-
"card_heading": "Leo imperdiet nascetur",
17-
"card_description": "Dui scelerisque nullam adipiscing mi condimentum a laoreet mus tempor libero sagittis adipiscing.",
18-
"card_link_text": "Potenti placerat nec",
19-
"card_link_url": "#"
16+
"card_heading": "Postcultural situationism",
17+
"card_description": "A number of theories concerning poststructuralist situationism may be found.",
18+
"card_link_text": "Semiotic rationalism",
19+
"card_link_url": "https://example.com/"
2020
}
2121
]
2222
}

src/layout/eg-search.twig

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/layout/footer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"site_title": "Cool University Website"
2+
"site_title": "Dialectic Narrative"
33
}

src/layout/footer.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{%- set footer_aria_label = footer_aria_label | default( "global information" ) -%}
22

3-
<footer class="footer" aria-label="{{footer_aria_label}}">
4-
<p class="footer-copyright">© {{"now"| date( "Y" )}} {{site_title}}</p>
3+
<footer class="footer" aria-label="{{- footer_aria_label -}}">
4+
<p class="footer-copyright">© {{ "now" | date( "Y" ) }} {{ site_title -}}</p>
55
</footer>

src/layout/header.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"site_title": "Cool University Website",
3-
"site_url": "#"
2+
"site_title": "Dialectic Narrative",
3+
"site_url": "https://example.com/"
44
}

0 commit comments

Comments
 (0)