Skip to content

Commit e4028e7

Browse files
committed
fix navi
1 parent 7178dd5 commit e4028e7

14 files changed

Lines changed: 50 additions & 80 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"postStartCommand": "make serve",
99
"customizations": {
1010
"vscode": {
11-
"extensions": ["sissel.shopify-liquid", "esbenp.prettier-vscode", "ms-vscode.makefile-tools"]
11+
"extensions": ["esbenp.prettier-vscode", "ms-vscode.makefile-tools"]
1212
}
1313
}
1414
}

assets/css/main.scss

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

assets/css/sass/base.scss

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

assets/js/.keep

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/js/main.js

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

astro.config.mjs

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,42 @@ export default defineConfig({
140140
},
141141
{
142142
label: "Web Application",
143-
autogenerate: { directory: "web-application" },
143+
items: [
144+
"web-application",
145+
"web-application/getting-started",
146+
"web-application/installation",
147+
{
148+
label: "How-to",
149+
autogenerate: { directory: "web-application/how-to" },
150+
},
151+
{
152+
label: "Reference",
153+
autogenerate: { directory: "web-application/reference" },
154+
},
155+
{
156+
label: "Tutorials",
157+
autogenerate: { directory: "web-application/tutorials" },
158+
},
159+
],
144160
},
145161
{
146162
label: "Ruby Gem",
147-
autogenerate: { directory: "ruby-gem" },
163+
items: [
164+
"ruby-gem",
165+
"ruby-gem/installation",
166+
{
167+
label: "How-to",
168+
autogenerate: { directory: "ruby-gem/how-to" },
169+
},
170+
{
171+
label: "Reference",
172+
autogenerate: { directory: "ruby-gem/reference" },
173+
},
174+
{
175+
label: "Tutorials",
176+
autogenerate: { directory: "ruby-gem/tutorials" },
177+
},
178+
],
148179
},
149180
{
150181
label: "Get Involved",

src/assets/houston.webp

-96.2 KB
Binary file not shown.

src/components/FeedDirectory.astro

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ const staticFeedUrls = configs.map((config) => ({
6969
<div class="feed-main">
7070
<div class="feed-info">
7171
<div class="feed-title">
72-
<span class="domain">{config.domain}</span><span class="separator">/</span><span class="name">{config.name}</span>
72+
<>
73+
<span class="domain">{config.domain}</span>
74+
<span class="separator">/</span>
75+
<span class="name">{config.name}</span>
76+
</>
7377
</div>
7478

7579
{config.channel?.url && (

src/content/docs/web-application/getting-started.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: "Getting Started"
33
description: "Welcome! This guide will help you create RSS feeds from any website using the html2rss-web application."
4+
sidebar:
5+
order: 2
46
---
57

68
Welcome! This guide will help you create RSS feeds from any website using the html2rss-web application.

src/content/docs/web-application/how-to/automatic-updates.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: "Automatic Updates"
33
description: "The watchtower service automatically pulls running Docker images and checks for updates."
4+
sidebar:
5+
order: 10
46
---
57

68
The [watchtower](https://containrrr.dev/watchtower/) service automatically pulls running Docker images and checks for updates. If an update is available, it will automatically start the updated image with the same configuration as the running one. Please read its manual.

0 commit comments

Comments
 (0)