Skip to content

Commit

Permalink
Fix invalid baseUrl in theme
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed May 26, 2022
1 parent f95d73c commit b6f6d1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kamranahmedse/github-pages-blog-action",
"version": "0.0.6",
"version": "0.0.7",
"description": "Create good looking blog from your markdown files in a GitHub repository\n\n",
"main": "lib/main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions theme/_includes/header.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/styles/shades-of-purple.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"></script>

<link rel="stylesheet" href="<%- `${siteConfig.seo.baseUrl}/` %>css/normalize.css"/>
<link rel="stylesheet" href="<%- `${siteConfig.seo.baseUrl}/` %>css/theme.css"/>
<link rel="stylesheet" href="<%- `${siteConfig.baseUrl || ''}/` %>css/normalize.css"/>
<link rel="stylesheet" href="<%- `${siteConfig.baseUrl || ''}/` %>css/theme.css"/>
</head>
<body>
<nav class="nav">
Expand Down

0 comments on commit b6f6d1b

Please sign in to comment.