summaryrefslogtreecommitdiff
path: root/public/views/slide.ejs
diff options
context:
space:
mode:
authorWu Cheng-Han2016-11-29 00:44:15 +0800
committerWu Cheng-Han2016-11-29 00:44:15 +0800
commit47d5efb29e086e8baef5debd1619b54c5b088005 (patch)
tree196d2dc35e33c818b9c6d0659fec01ae5791aebb /public/views/slide.ejs
parentead48e45e0977e6376640b89f842f238ab382f94 (diff)
Fix slide resource path and style load orders to avoid conflicts
Diffstat (limited to 'public/views/slide.ejs')
-rw-r--r--public/views/slide.ejs13
1 files changed, 8 insertions, 5 deletions
diff --git a/public/views/slide.ejs b/public/views/slide.ejs
index bfc5eddf..0a2d8214 100644
--- a/public/views/slide.ejs
+++ b/public/views/slide.ejs
@@ -14,6 +14,10 @@
<title><%= title %></title>
<link rel="icon" type="image/png" href="<%- url %>/favicon.png">
<link rel="apple-touch-icon" href="<%- url %>/apple-touch-icon.png">
+
+ <!-- For reveal.js -->
+ <link rel="stylesheet" href="<%- url %>/build/reveal.js/css/reveal.css">
+
<% if(useCDN) { %>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css" integrity="sha256-3iu9jgsy9TpTwXKb7bNQzqWekRX7pPK+2OLj3R922fo=" crossorigin="anonymous" />
@@ -25,11 +29,10 @@
<%- include build/slide-pack-header %>
<% } %>
- <!-- For reveal.js -->
- <link rel="stylesheet" href="<%- url %>/vendor/reveal.js/css/reveal.css">
- <link rel="stylesheet" href="<%- url %>/vendor/reveal.js/css/theme/black.css" id="theme">
+ <!-- For reveal.js theme -->
+ <link rel="stylesheet" href="<%- url %>/build/reveal.js/css/theme/black.css" id="theme">
<!-- For syntax highlighting -->
- <link rel="stylesheet" href="<%- url %>/vendor/reveal.js/lib/css/zenburn.css">
+ <link rel="stylesheet" href="<%- url %>/build/reveal.js/lib/css/zenburn.css">
<!-- For overwrite reveal.js -->
<link rel="stylesheet" href="<%- url %>/css/slide.css">
@@ -38,7 +41,7 @@
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
- link.href = '<%- url %>/vendor/reveal.js/' + (window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css');
+ link.href = '<%- url %>/build/reveal.js/' + (window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css');
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>