-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
load css and js without cache on deploy
- Loading branch information
1 parent
a4cdf3e
commit 071870c
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
<link rel="canonical" href="{{ site.url }}"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/index.min.css"> | ||
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}"> | ||
<script src="{{ "/assets/js/main.js" | relative_url }}"></script> | ||
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}?v={{ site.time | date: '%s' }}"> | ||
<script src="{{ "/assets/js/main.js" | relative_url }}"?v={{ site.time | date: '%s' }}></script> | ||
{%- feed_meta -%} | ||
{%- if jekyll.environment == 'production' and site.google_analytics -%} | ||
{%- include extensions/google-analytics.html -%} | ||
|