Skip to content

Commit 5a68e71

Browse files
committed
Testing a GitHub release
1 parent 840e074 commit 5a68e71

File tree

5 files changed

+108
-25
lines changed

5 files changed

+108
-25
lines changed

_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
title: OS²Product
44
55
description: The Jekyll version of the Spectral theme by HTML5 UP.
6-
baseurl: ""
7-
url: "http://localhost:4000"
6+
# baseurl: ""
7+
# url: "http://localhost:4000"
88

99
# Uncomment the lines below if you are deploying to GitHub Pages
10-
# baseurl: "/spectral-jekyll-theme"
11-
# url: "https://janhalen.github.io"
10+
baseurl: "/spectral-jekyll-theme"
11+
url: "https://janhalen.github.io"
1212

1313
# Homepage tiles
1414
tiles-source: posts # accepts "posts" or "pages"

_includes/mermaid-init.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js
1+
<script src="
2+
https://cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.min.js">
3+
</script>
24
<script>
35
document.addEventListener("DOMContentLoaded", function () {
46
const blocks = document.querySelectorAll("pre code.language-mermaid");

_layouts/post.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
background-size: cover;
2727
background-position: center;
2828
background-attachment: fixed;
29-
filter: brightness({{ page.image_brightness | default: 0.5 }});
29+
filter: brightness({{ page.image_brightness | default: 0.7 }});
3030
z-index: 0;">
3131
</div>
3232
<a href="{{ credit_url }}" target="_blank" title="Image credit on Pexels" style="
@@ -59,6 +59,7 @@ <h2>{{ page.title }}</h2>
5959
</article>
6060

6161
{% include footer.html %}
62+
{% include mermaid-init.html %}
6263

6364
</body>
6465
</html>
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
---
2+
layout: post
3+
title: "A Business Case diagram has been added"
4+
description: "To visualise the value of this project, while testing Mermaid integration, a Business Case value realization diagram was added to the site"
5+
image: "https://images.pexels.com/photos/3183170/pexels-photo-3183170.jpeg"
6+
image_brightness: 0.6
7+
---
8+
9+
Two benefits in one go! Testing out Mermaid rendering and delivering the value proposition in a standardised value realisation chart was added to the site.
10+
11+
See the diagram below:
12+
13+
### 📈 Value realisation diagram
14+
15+
```mermaid
16+
flowchart TD
17+
subgraph Legend[" "]
18+
direction LR
19+
L1["🔵 Drivkræfter"]
20+
L2["🟢 Ændringer"]
21+
L3["🟠 Fordele"]
22+
L4["🟣 Værdier"]
23+
end
24+
25+
subgraph Content[" "]
26+
B1["Markdown-baseret indholdsstyring"]
27+
B2["Versionsstyring og samarbejde"]
28+
A1["GitHub som fælles kilde"]
29+
B3["Automatiseret site-generering"]
30+
B4["Indførelse af løskoblet arkitektur"]
31+
A2["Statisk sidegenerator"]
32+
B5["Automatiseret udrulning"]
33+
A3["CI/CD pipeline"]
34+
B6["Skift til statisk hosting og CDN"]
35+
A4["Statisk site generering - SSG"]
36+
C1["Lettere opdatering af indhold"]
37+
C2["Gennemsigtig ændringshistorik"]
38+
C3["Reduceret manuelt arbejde"]
39+
C4["Styrket exit-strategi og teknologisk uafhængighed"]
40+
C5["Hurtigere publicering"]
41+
C6["Hurtigere indlæsning og bedre SEO"]
42+
D1["Ansvarlig brug af offentlige midler"]
43+
D3["Vækst i open source-økosystemet"]
44+
D4["Digital suverænitet"]
45+
D2["Øget offentlig værdi"]
46+
D5["Interoperabilitet og samarbejde"]
47+
end
48+
49+
A1 --> B1 & B2
50+
A2 --> B3 & B4
51+
A3 --> B5
52+
A4 --> B6
53+
B1 --> C1
54+
B2 --> C2
55+
B3 --> C3
56+
B4 --> C4
57+
B5 --> C5
58+
B6 --> C6
59+
C1 --> D1 & D3
60+
C2 --> D1 & D4 & D3
61+
C3 --> D1
62+
C4 --> D2 & D5 & D4
63+
C5 --> D2
64+
C6 --> D2
65+
66+
L1:::enabler
67+
L2:::change
68+
L3:::benefit
69+
L4:::value
70+
A1:::enabler
71+
B1:::change
72+
B2:::change
73+
A2:::enabler
74+
B3:::change
75+
B4:::change
76+
A3:::enabler
77+
B5:::change
78+
A4:::enabler
79+
B6:::change
80+
C1:::benefit
81+
C2:::benefit
82+
C3:::benefit
83+
C4:::benefit
84+
C5:::benefit
85+
C6:::benefit
86+
D1:::value
87+
D3:::value
88+
D4:::value
89+
D2:::value
90+
D5:::value
91+
92+
classDef enabler fill:#d0e6f7,stroke:#000,stroke-width:1px,color:#333
93+
classDef change fill:#e6f2d0,stroke:#000,stroke-width:1px,color:#333
94+
classDef benefit fill:#f7e6d0,stroke:#000,stroke-width:1px,color:#333
95+
classDef value fill:#ecd0f7,stroke:#000,stroke-width:1px,color:#333
96+
style Legend stroke:none
97+
style Content stroke:none
98+
```
99+

generic.md

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

0 commit comments

Comments
 (0)