@@ -0,0 +1,24 @@ | |||||
#!/bin/sh | |||||
watch() { | |||||
npx browser-sync start --proxy 'localhost:8000' -w --files assets views sass & | |||||
pid=$! | |||||
sass --load-path=sass --watch --error-css scss/main.scss ../public/main.css & | |||||
pid="$pid $!" | |||||
trap "kill -TERM $pid" 0 1 2 15 | |||||
wait | |||||
} | |||||
once() { | |||||
sass --load-path=sass scss/main.scss ../public/main.css | |||||
} | |||||
deploy() { | |||||
rsync -av --delete onyeka assets view files onyeka@onyeka.ca:~/site/ | |||||
} | |||||
case $1 in | |||||
'watch') watch ;; | |||||
'once') once ;; | |||||
'deploy') deploy ;; | |||||
esac |
@@ -0,0 +1,19 @@ | |||||
// @font-face { | |||||
// font-family: "EBGaramond-initials"; | |||||
// src: url("font/EBGaramond/EBGaramond-Initials.otf") format("opentype"); | |||||
// font-style: normal; | |||||
// font-weight: normal; | |||||
// } | |||||
html body { | |||||
// font-family: 'EBGaramond', 'Times New Roman'; | |||||
background: url("background/interlaced/interlaced.png") repeat; | |||||
margin: 0; | |||||
} | |||||
h1 { | |||||
color: black; | |||||
} | |||||
a { | |||||
// text-decoration: none; | |||||
} |
@@ -13,7 +13,7 @@ | |||||
<body> | <body> | ||||
<nav class='navigator' role="navigation"> | <nav class='navigator' role="navigation"> | ||||
<a id='logo' href='/'> | <a id='logo' href='/'> | ||||
<h3>Trendplays</h3> | |||||
<h1>Trendplays</h1> | |||||
</a> | </a> | ||||
@guest | @guest | ||||
<form class= 'login' method='POST'> | <form class= 'login' method='POST'> | ||||
@@ -12,6 +12,12 @@ | |||||
<div id="counter"> | <div id="counter"> | ||||
Counter: @{{ counter }} | Counter: @{{ counter }} | ||||
</div> | </div> | ||||
<nav class="sidebar"> | |||||
<a href="/panel">Summary<div><img src="" alt=""></div></a> | |||||
<a href="/panel/orders">Orders<div><img src="" alt=""></div></a> | |||||
<a href="/panel/help">Help<div><img src="" alt=""></div></a> | |||||
<a href="/panel/admin">Administrator<div><img src="" alt=""></div></a> | |||||
</nav> | |||||
@endsection | @endsection | ||||
@section('scripts') | @section('scripts') | ||||