diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 6 | ||||
| -rw-r--r-- | _layouts/project.html | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 4eb433e..1c259f6 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -6,11 +6,13 @@ <title>{{ page.title }}</title> <meta name="viewport" content="width=device-width"> + <link rel="stylesheet" href="/public/bootstrap/css/bootstrap.css"/> + <!-- syntax highlighting CSS --> - <link rel="stylesheet" href="/css/syntax.css"> + <link rel="stylesheet" href="/public/css/syntax.css"/> <!-- Custom CSS --> - <link rel="stylesheet" href="/css/main.css"> + <link rel="stylesheet" href="/public/css/main.css"/> </head> <body> diff --git a/_layouts/project.html b/_layouts/project.html new file mode 100644 index 0000000..e05e8d2 --- /dev/null +++ b/_layouts/project.html @@ -0,0 +1,8 @@ +--- +layout: default +--- + +<h2 class="h2">{{ page.project_name }}</h2> + +{% capture text %}{% include_project {{page.file}} %}{% endcapture %} +{{ text | markdownify }} |
