Skip to content

Commit

Permalink
Rename stylesheet and add cache variable
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmitchell committed Oct 3, 2024
1 parent 96ea6d2 commit 131b2b4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{% assign description = page.description | default: site.description | markdownify | strip_html | strip_newlines %}
{% assign image = page.image | default: site.image | absolute_url %}
{% assign url = page.url | absolute_url %}
{% assign cache = site.time | date: '%s' %}

<head>

Expand All @@ -27,13 +28,13 @@
<meta name="twitter:card" content="summary_large_image">

<link rel="canonical" href="{{ url }}">
<link rel="icon" href="{{ '/assets/images/favicon.svg' }}">
<link rel="mask-icon" href="{{ '/assets/images/mask-icon.svg' }}" color="#0A82F5">
<link rel="apple-touch-icon" href="{{ '/assets/images/apple-touch-icon.png' }}">
<link rel="stylesheet" href="{{ '/assets/css/style-v2.css' }}">
<link rel="icon" href="/assets/images/favicon.svg">
<link rel="mask-icon" href="/assets/images/mask-icon.svg" color="#0A82F5">
<link rel="apple-touch-icon" href="/assets/images/apple-touch-icon.png">
<link rel="stylesheet" href="/assets/css/style.css?{{ cache }}">

<script src="{{ '/assets/js/lunr.min.js' }}"></script>
<script src="{{ '/assets/js/script.js' }}" type="module"></script>
<script src="/assets/js/lunr.min.js"></script>
<script src="/assets/js/script.js?{{ cache }}" type="module"></script>

<script defer data-domain="kamal-deploy.org" src="https://plausible.io/js/script.js"></script>

Expand Down
File renamed without changes.

0 comments on commit 131b2b4

Please sign in to comment.