Skip to content

Commit

Permalink
fix: fix css path for entries pages
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Dec 29, 2021
1 parent 3681061 commit 2ecfc61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/main/js/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
interface inputParam {
interface Options {
input: string,
output: string,
cwd?: string,
Expand All @@ -7,6 +7,6 @@ interface inputParam {
navPage?: boolean,
navTitle?: string,
navFooter?:string
temp?: string
}
export declare function run(param: inputParam): void;

export declare function run(options: Options): void;
4 changes: 2 additions & 2 deletions src/main/tpl/_layouts/page.njk
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
{{ title or page.fileSlug }}
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ './radar.css' | url }}">
<link rel="shortcut icon" href="{{ './favicon.ico' | url }}" type="image/x-icon">
<link rel="stylesheet" href="{{ '../../../radar.css' | url }}">
<link rel="shortcut icon" href="{{ '../../../favicon.ico' | url }}" type="image/x-icon">
</head>
<body class="page__body">
{{ content | safe }}
Expand Down

0 comments on commit 2ecfc61

Please sign in to comment.