Skip to content

Commit

Permalink
tests extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
edelstone committed Sep 22, 2024
1 parent 5f515b4 commit ad49f09
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Easily make tints and shades that match the output of Chrome DevTools, Sass, Less, and PostCSS.",
"main": "index.js",
"scripts": {
"watch:readme": "nodemon --watch src/about.njk --watch build-readme.js --exec \"npm run build:readme\"",
"watch:readme": "nodemon --watch src/about.html --watch build-readme.js --exec \"npm run build:readme\"",
"build:readme": "node build-readme.js",
"watch:css": "sass --watch src/scss:_site/css",
"build:css": "sass src/scss:_site/css",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/_includes/layouts/base.njk
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<html lang="en">

<head>
{% include "head.html" %}
{% include "head.njk" %}
</head>

<body>
{% include "header.html" %}
{% include "header.njk" %}
<main id="main" class="main {% if docs %}docs{% endif %}">
{{ content | safe }}
</main>
{% include "footer.html" %}
{% include "scripts.html" %}
{% include "scripts.njk" %}
</body>

</html>
File renamed without changes.
2 changes: 1 addition & 1 deletion src/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: layouts/base
title: About
permalink: /about/
permalink: /about.html
docs: true
---

Expand Down
File renamed without changes.

0 comments on commit ad49f09

Please sign in to comment.