25 lines
550 B
HTML
25 lines
550 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% if page.title %}
|
|
<title>{{ page.title }} | {{ site.title }}</title>
|
|
{% else %}
|
|
<title>{{ site.title }}</title>
|
|
{% endif %}
|
|
<link rel="stylesheet" type="text/css" href="{{ "main.css" | relative_url }}" />
|
|
</head>
|
|
<body>
|
|
{% if basic_theme.display_title and site.title %}
|
|
<h1>{{ site.title }}</h1>
|
|
{% endif %}
|
|
{% include links.lqd top: true %}
|
|
{{ content }}
|
|
<hr />
|
|
{% if basic.display_info %}
|
|
This is {{ site.url | get_domain }} running Jekyll.
|
|
{% endif %}
|
|
{% include links.lqd.html top: false %}
|
|
<hr />
|
|
</body>
|
|
</html>
|