Skip to content

Commit a8b138a

Browse files
committed
Removed the CNAME file
1 parent 105fe70 commit a8b138a

File tree

5 files changed

+29
-1
lines changed

5 files changed

+29
-1
lines changed

CNAME

-1
This file was deleted.

_cms.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import lumeCMS from "lume/cms.ts";
2+
3+
const cms = lumeCMS();
4+
5+
export default cms;

_config.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import lume from "lume/mod.ts";
2+
3+
const site = lume();
4+
5+
export default site;

_includes/layout.vto

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>{{ title }}</title>
6+
</head>
7+
<body>
8+
{{ content }}
9+
</body>
10+
</html>

second-page.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: layout.vto
3+
title: My work
4+
---
5+
# Another page
6+
7+
My second page in **Lume**.
8+
9+
This is getting better!

0 commit comments

Comments
 (0)