Skip to content

Instantly share code, notes, and snippets.

@tokkonopapa
Created December 29, 2011 05:43
Show Gist options
  • Save tokkonopapa/1532174 to your computer and use it in GitHub Desktop.
Save tokkonopapa/1532174 to your computer and use it in GitHub Desktop.
jekyllに必要な最小ファイル群
.
├─ _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>
layout title
default
プロジェクト・タイトル

プロジェクト・タイトル

ここにプロジェクトの概要を書きます。 ...

@tokkonopapa
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment