Modified static to public
This commit is contained in:
parent
59b7f1533f
commit
13725e6a24
11 changed files with 9 additions and 9 deletions
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
0
static/js/jquery.js → public/js/jquery.js
vendored
0
static/js/jquery.js → public/js/jquery.js
vendored
|
@ -5,8 +5,8 @@ $def with (main_block, sidebar_block, game_name)
|
|||
<meta charset="utf-8">
|
||||
<title>TyeDye control panel for $game_name</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- <link rel='stylesheet' type='text/css' href='/static/main.css'> -->
|
||||
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
||||
<!-- <link rel='stylesheet' type='text/css' href='/public/main.css'> -->
|
||||
<link href="/public/css/bootstrap.min.css" rel="stylesheet">
|
||||
<style type="text/css">
|
||||
body {
|
||||
padding-top: 60px;
|
||||
|
@ -25,7 +25,7 @@ $def with (main_block, sidebar_block, game_name)
|
|||
}
|
||||
}
|
||||
</style>
|
||||
<link href="/static/css/bootstrap-responsive.css" rel="stylesheet">
|
||||
<link href="/public/css/bootstrap-responsive.css" rel="stylesheet">
|
||||
|
||||
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||||
<!--[if lt IE 9]>
|
||||
|
@ -33,11 +33,11 @@ $def with (main_block, sidebar_block, game_name)
|
|||
<![endif]-->
|
||||
|
||||
<!-- Fav and touch icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/static/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/static/ico/apple-touch-icon-114-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/static/ico/apple-touch-icon-72-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" href="/static/ico/apple-touch-icon-57-precomposed.png">
|
||||
<link rel="shortcut icon" href="/static/ico/favicon.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/public/ico/apple-touch-icon-114-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/public/ico/apple-touch-icon-72-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" href="/public/ico/apple-touch-icon-57-precomposed.png">
|
||||
<link rel="shortcut icon" href="/public/ico/favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
<!-- begin navbar -->
|
||||
|
@ -84,7 +84,7 @@ $def with (main_block, sidebar_block, game_name)
|
|||
<!-- Le javascript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="/static/js/jquery.js"></script>
|
||||
<script src="/public/js/jquery.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
Loading…
Reference in a new issue