You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -113,71 +113,199 @@ Then visit [http://localhost:1313](http://localhost:1313) in your browser.
113
113
114
114
## Configuration Reference
115
115
116
+
Smigle Lite offers extensive configuration options to customize your site. Below is a complete reference based on the provided example configuration file.
117
+
116
118
### Basic Configuration
117
119
118
120
```yaml
119
-
# config.yaml
120
-
baseURL: "https://example.com/"
121
-
languageCode: "en-us"
122
-
title: "My Smigle Lite Site"
123
-
theme: "smigle-lite"
121
+
baseURL: localhost # Your site's base URL
122
+
languageCode: en-gb # Language code for your site
123
+
title: Site Title # Your site's title
124
+
theme: smigle # Theme name (should be set to smigle-lite)
125
+
126
+
paginate: 10# Number of posts per page
127
+
```
124
128
125
-
# Main menu configuration
129
+
### Menu Configuration
130
+
131
+
Configure the main navigation menu that appears at the top of your site:
132
+
133
+
```yaml
126
134
menu:
127
135
main:
128
-
- identifier: "home"
129
-
name: "Home"
130
-
url: "/"
131
-
weight: 1
132
-
- identifier: "posts"
133
-
name: "Posts"
134
-
url: "/posts/"
135
-
weight: 2
136
-
- identifier: "categories"
137
-
name: "Categories"
138
-
url: "/categories/"
139
-
weight: 3
140
-
- identifier: "tags"
141
-
name: "Tags"
142
-
url: "/tags/"
143
-
weight: 4
144
-
- identifier: "about"
145
-
name: "About"
146
-
url: "/about/"
147
-
weight: 5
136
+
- identifier: home# Unique identifier for the menu item
137
+
name: Home# Display name
138
+
url: / # URL path
139
+
weight: 1# Order in menu (lower values appear first)
140
+
- identifier: about
141
+
name: About
142
+
url: /about/
143
+
weight: 2
144
+
- identifier: posts
145
+
name: Posts
146
+
url: /posts/
147
+
weight: 3
148
+
- identifier: categories
149
+
name: Categories
150
+
url: /categories/
151
+
weight: 5
152
+
- identifier: tags
153
+
name: Tags
154
+
url: /tags/
155
+
weight: 6
148
156
```
149
157
150
158
### Theme Parameters
151
159
160
+
Smigle Lite provides several customization parameters:
0 commit comments