Move CSS and JS into separate folders under static.
This commit is contained in:
parent
55d0bb463c
commit
13a72ec7fc
5 changed files with 5 additions and 5 deletions
|
@ -5,8 +5,8 @@
|
|||
<title>{{channel.name}}</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<link rel="stylesheet" href="/static/common.css">
|
||||
<script src="/static/common.js"></script>
|
||||
<link rel="stylesheet" href="/static/css/common.css">
|
||||
<script src="/static/js/common.js"></script>
|
||||
|
||||
<style>
|
||||
#content_body
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
<title>Channels</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<link rel="stylesheet" href="/static/common.css">
|
||||
<script src="/static/common.js"></script>
|
||||
<link rel="stylesheet" href="/static/css/common.css">
|
||||
<script src="/static/js/common.js"></script>
|
||||
|
||||
<style>
|
||||
#content_body
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<title>YCDL</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<link rel="stylesheet" href="/static/common.css">
|
||||
<link rel="stylesheet" href="/static/css/common.css">
|
||||
|
||||
<style>
|
||||
body, a
|
||||
|
|
Loading…
Reference in a new issue