layout | title |
---|---|
default |
プロジェクト・タイトル |
ここにプロジェクトの概要を書きます。 ...
. | |
├─ _layouts | |
│ └─ default.html | |
├─ css | |
│ └─ styles.css | |
└─ index.md |
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="css/styles.css"> | |
<title>{% if page.title %}{{ page.title }}{% endif %}</title> | |
<link rel="stylesheet" href="css/styles.css"> | |
</head> | |
<body> | |
{{ content }} | |
</body> | |
</html> |
jekyllで作る簡単GitHub Pages