···22id: TGm1pyN0WiY
33title: English Docs
44description: Documentation for the Makko Static Site Generator and blogging tool.
55-author: Starlight Network Team
55+author: The Starlight Network
66visibility: public
77disable_templating: true
88created: 2025-07-17T21:09:58+00:00
99---
10101111+
1212+1113### Some notes before you begin:
1212-> Makko assumes you have some level of knowledge working with websites, specifically some knowledge about writing and reading basic HTML. You can refer to MDN which has guides for HTML and more [here on their website](https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Structuring_content)
1414+Makko assumes you have some level of knowledge working with websites, specifically some knowledge about writing and reading basic HTML. You can refer to MDN which has guides for HTML and more [here on their website](https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Structuring_content)
13151416> **If you are coming from Makko 1.0 or Makko 1.1, please scroll to the [migration section](#makko-migration).**
1517···84868587`templates/feed.html`
8688```html
8787-<head>
8888- <title>{{website.title}}</title>
8989-</head>
9090-<body>
9191- <h1>{{website.title}}</h1>
9292- <p1 style="opacity: 60%">{{website.description}}</p1>
9393- ...
9494-</body>
8989+<!doctype html>
9090+<html lang="en">
9191+ <head>
9292+ <title>{{website.title}}</title>
9393+ </head>
9494+ <body>
9595+ <h1>{{website.title}}</h1>
9696+ <p1 style="opacity: 60%">{{website.description}}</p1>
9797+ ...
9898+ </body>
9999+</html>
95100```
9610197102You get:
···292297- `disable_templating`: Do you want to use `{{}}` in your post but Mustache's templating gets in your way? setting this to `true` will delegate templating only for the feed and the post template.
293298294299> **Note:** The Frontmatter intentionally does not support `{{}}` templates.
300300+295301> **IMPORTANT!!!** Currently, the frontmatter is actually **NOT TO-SPEC YAML**, this is an implementation issue that should be resolved shortly once Makko can get its own proper YAML parser instead of [having a pretty broken one.](https://forge.starlightnet.work/Team/Makko/issues/12)
296302297303···370376// Lists of posts with X tag, same format as "post" field.
371377// Only valid in "feed.html".
372378"by_tag": {
373373- "awesome": [...],
379379+ "awesome": [...],
374380 "super-cool": [...],
375375- "dope-post": [...],
381381+ "dope-post": [...],
376382 ...
377383}
378384```
···389395author: THe GuY 123 xXGamerXx
390396visibility: public
391397---
398398+392399<h1>hey check this picture of a dog that i found</h1>
393400<img src="dogpicture.png"/>
394401<p>pretty neat huh</p>