Add subdir for gh-pages
This commit is contained in:
parent
62e94023d8
commit
39c6d28733
@ -45,7 +45,7 @@ module.exports = function(eleventyConfig) {
|
|||||||
],
|
],
|
||||||
|
|
||||||
// if your site lives in a subdirectory, change this
|
// if your site lives in a subdirectory, change this
|
||||||
urlPrefix: "/",
|
urlPrefix: "/eleventy-base-blog/",
|
||||||
|
|
||||||
markdownTemplateEngine: "liquid",
|
markdownTemplateEngine: "liquid",
|
||||||
htmlTemplateEngine: "njk",
|
htmlTemplateEngine: "njk",
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>{{ title or metadata.title }}</title>
|
<title>{{ title or metadata.title }}</title>
|
||||||
<link rel="stylesheet" href="/css/index.css">
|
<link rel="stylesheet" href="{{ '/css/index.css' | url }}">
|
||||||
<link rel="stylesheet" href="/css/prism-base16-monokai.dark.css">
|
<link rel="stylesheet" href="{{ '/css/prism-base16-monokai.dark.css' | url }}">
|
||||||
<link rel="alternate" href="/feed/" type="application/atom+xml" title="{{ title }}">
|
<link rel="alternate" href="{{ '/feed/' | url }}" type="application/atom+xml" title="{{ title }}">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1 class="home"><a href="/">{{ metadata.title }}</a></h1>
|
<h1 class="home"><a href="{{ '/' | url }}">{{ metadata.title }}</a></h1>
|
||||||
<ul class="nav">
|
<ul class="nav">
|
||||||
{%- for nav in collections.nav | reverse -%}
|
{%- for nav in collections.nav | reverse -%}
|
||||||
<li class="nav-item{% if nav.url == page.url %} nav-item-active{% endif %}"><a href="{{ nav.url | url }}">{{ nav.data.navtitle }}</a></li>
|
<li class="nav-item{% if nav.url == page.url %} nav-item-active{% endif %}"><a href="{{ nav.url | url }}">{{ nav.data.navtitle }}</a></li>
|
||||||
|
Loading…
Reference in New Issue
Block a user