add now to nav
This commit is contained in:
parent
0ff72b4770
commit
cdcf871a4f
4 changed files with 2 additions and 9 deletions
|
@ -1 +0,0 @@
|
|||
[{"1cce4ddcbc732998e95932ffce6c63":"1"},{"cachedAt":1678651827000,"type":"2"},"json"]
|
|
@ -41,14 +41,6 @@ module.exports = function (eleventyConfig) {
|
|||
excerpt_separator: '<!-- excerpt -->',
|
||||
})
|
||||
|
||||
// create a filter to determine duration of post
|
||||
eleventyConfig.addFilter('readTime', (value) => {
|
||||
const content = value
|
||||
const textOnly = content.replace(/(<([^>]+)>)/gi, '')
|
||||
const readingSpeedPerMin = 450
|
||||
return Math.max(1, Math.floor(textOnly.length / readingSpeedPerMin))
|
||||
})
|
||||
|
||||
// enable us to iterate over all the tags, excluding posts and all
|
||||
eleventyConfig.addCollection('tagList', (collection) => {
|
||||
const tagsSet = new Set()
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
_site
|
||||
node_modules
|
||||
.DS_Store
|
||||
.cache
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<nav>
|
||||
<ul class="flex">
|
||||
<li class="mr-6"><a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-400" href="/now">/now</a></li>
|
||||
<li class="mr-6"><a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-400" href="/about">About</a></li>
|
||||
<li class="mr-6">
|
||||
{% include "icons/coffee.liquid" %}
|
||||
|
|
Reference in a new issue