# package.json の追加
$ npm init -y
# 11ty のインストール
$ npm install --save-dev @11ty/eleventy
---
title: タイトル
---
<!doctype html>
<html>
<head>
<title>{{ title }}</title>
</head>
<body>
{{ content | safe }}
</body>
</html>
---
layout: layout.njk
title: 11tyのデモ
---
# {{ title }}
サンプルとテキストだよ。
- その1
- その2
- その3
# ビルド
$ npx @11ty/eleventy
# 開発サーバ起動
$ npx @11ty/eleventy --serve