Starting to add scripts

This commit is contained in:
2016-12-03 00:23:05 +09:00
parent a45613be84
commit c2d9817ec5
14 changed files with 20 additions and 388 deletions

View File

@ -24,6 +24,10 @@ func main() {
// CSS
app.SetStyle(components.CSS())
// HTTPS
app.Security.Certificate, _ = ioutil.ReadFile("security/fullchain.pem")
app.Security.Key, _ = ioutil.ReadFile("security/privkey.pem")
// Layout
app.Layout = func(ctx *aero.Context, content string) string {
return components.Layout(content)