Skip to content

Commit

Permalink
Coming soon: Fix paths (#2937)
Browse files Browse the repository at this point in the history
Fixes #2930
  • Loading branch information
agriffard authored and sebastienros committed Dec 26, 2018
1 parent 9a836d2 commit fee700e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/OrchardCore.Themes/TheComingSoonTheme/Views/layout.liquid
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="{{ Culture.Name }}">

<head>
Expand All @@ -13,16 +13,16 @@
<title>{% page_title Site.SiteName %}</title>

<!-- Bootstrap core CSS -->
<link href="~/TheComingSoonTheme/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="{{ "~/TheComingSoonTheme/vendor/bootstrap/css/bootstrap.min.css" | href }}" rel="stylesheet">

<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
{% comment %}<link href="~/TheComingSoonTheme/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">{% endcomment %}
{% comment %}<link href="{{ ~/TheComingSoonTheme/vendor/fontawesome-free/css/all.min.css | href }}" rel="stylesheet">{% endcomment %}
{% style name:"font-awesome", version:"5" %}

<!-- Custom styles for this template -->
<link href="~/TheComingSoonTheme/css/coming-soon.min.css" rel="stylesheet">
<link href="{{ "~/TheComingSoonTheme/css/coming-soon.min.css" | href }}" rel="stylesheet">
{% resources type: "Meta" %}
{% resources type: "HeadLink" %}
{% resources type: "Stylesheet" %}
Expand All @@ -33,19 +33,19 @@

<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="~/TheComingSoonTheme/mp4/bg.mp4" type="video/mp4">
<source src="{{ "~/TheComingSoonTheme/mp4/bg.mp4" | href }}" type="video/mp4">
</video>

{% render_section "Header", required: false %}
{% render_section "Content" %}
{% render_section "Footer", required: false %}

<!-- Bootstrap core JavaScript -->
<script src="~/TheComingSoonTheme/vendor/jquery/jquery.min.js"></script>
<script src="~/TheComingSoonTheme/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="{{ "~/TheComingSoonTheme/vendor/jquery/jquery.min.js" | href }}"></script>
<script src="{{ "~/TheComingSoonTheme/vendor/bootstrap/js/bootstrap.bundle.min.js" | href }}"></script>

<!-- Custom scripts for this template -->
<script src="~/TheComingSoonTheme/js/coming-soon.min.js"></script>
<script src="{{ "~/TheComingSoonTheme/js/coming-soon.min.js" | href }}"></script>

{% resources type: "FootScript" %}
</body>
Expand Down

0 comments on commit fee700e

Please sign in to comment.