Skip to content

Commit

Permalink
Cache busting
Browse files Browse the repository at this point in the history
  • Loading branch information
drmathias committed Oct 14, 2020
1 parent 24d3c27 commit 356753f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/input/_layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<meta name="theme-color" content="#ffffff">

<link href="assets/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="assets/css/styles.css" rel="stylesheet" />
<link href="assets/css/styles.css?v=1" rel="stylesheet" />

<title>@(!string.IsNullOrEmpty(Document.GetTitle()) ? $"{Document.GetTitle()} - " : string.Empty)Develop Momentum</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/input/blog/_layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<meta name="theme-color" content="#ffffff">

<link href="../assets/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="../assets/css/styles.css" rel="stylesheet" />
<link href="../assets/css/styles.css?v=1" rel="stylesheet" />

<title>@(!string.IsNullOrEmpty(Document.GetTitle()) ? $"{Document.GetTitle()} - " : string.Empty)Develop Momentum</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/input/blog/latest/_layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<meta name="theme-color" content="#ffffff">

<link href="../../assets/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="../../assets/css/styles.css" rel="stylesheet" />
<link href="../../assets/css/styles.css?v=1" rel="stylesheet" />

<title>@(!string.IsNullOrEmpty(Document.GetTitle()) ? $"{Document.GetTitle()} - " : string.Empty)Develop Momentum</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/input/misc/_layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<meta name="theme-color" content="#ffffff">

<link href="/assets/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="/assets/css/styles.css" rel="stylesheet" />
<link href="/assets/css/styles.css?v=1" rel="stylesheet" />

<title>@(!string.IsNullOrEmpty(Document.GetTitle()) ? $"{Document.GetTitle()} - " : string.Empty)Develop Momentum</title>
</head>
Expand Down

0 comments on commit 356753f

Please sign in to comment.