Skip to content

Commit 48bffbc

Browse files
karthik2804macolso
authored andcommitted
fix fwf changelog
Signed-off-by: Karthik Ganeshram <[email protected]>
1 parent 75d3770 commit 48bffbc

File tree

4 files changed

+47
-4
lines changed

4 files changed

+47
-4
lines changed

config/site.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
title = "Fermyon Developer"
22
base_url = ""
33
about = "Fermyon Developer — the home for you as a developer using Fermyon projects and products."
4-
index_site_pages = ["sitemap", "home", "changelog", "hub_list_api"]
4+
index_site_pages = [
5+
"sitemap",
6+
"home",
7+
"changelog",
8+
"changelog_fwf",
9+
"hub_list_api",
10+
]
511
prepend_route_info = true
612

713
[extra]

content/wasm-functions/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title = "Fermyon Wasm Functions Changelog"
2-
template = "changelog"
2+
template = "changelog_fwf"
33
date = "2022-01-01T00:00:01Z"
44

55
---

content/wasm-functions/changelog/changelog-aka-plugin-v04.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
title = "`spin aka` v0.4 Updates"
2-
template = "changelog_fwf"
1+
title = "spin aka v0.4 Updates"
2+
template = "changelog_fwf_item"
33
date = "2025-05-26T12:00:00Z"
44
enable_shortcodes = true
55
tags = ["spin_aka_plugin"]
@@ -10,6 +10,8 @@ type= "changelog_post"
1010

1111
We're excited to announce the release of the `spin aka` v0.4.0, the latest version of Fermyon Wasm Functions' plugin!
1212

13+
<!-- break -->
14+
1315
This release focuses on making your development experience smoother, especially when collaborating with teammates and deploying your applications. Here’s what’s new:
1416

1517
### ✨ What's New in `spin aka` v0.4.0

templates/changelog_fwf_item.hbs

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{{! This adds the HTML head section and the beginning of the body. See content_top.hbs. }}
2+
{{> content_top }}
3+
4+
<main class="container is-fullwidth is-widescreen page-wrap changelog changelog-wrapper">
5+
<div class="columns">
6+
7+
{{! This adds the sidebar }}
8+
9+
<article class="column content content-docs content-docs-wide">
10+
<section id="type">
11+
12+
{{#if (eq page.head.title "Not Found")}}
13+
{{> 404 }}
14+
{{else}}
15+
<h1 class="blog-post-title border-bottom">{{page.head.title}}</h1>
16+
<div class="back-arrow"><a href="{{site.info.base_url}}/wasm-functions/changelog" class="back-arrow">←
17+
Back to
18+
Changelog</a></div>
19+
20+
{{{page.body}}}
21+
{{/if}}
22+
</section>
23+
24+
{{> content_footer }}
25+
</article>
26+
27+
</div>
28+
</main>
29+
30+
{{! This closes the body. See content_bottom.hbs. }}
31+
{{> content_bottom }}
32+
33+
</body>
34+
35+
</html>

0 commit comments

Comments
 (0)