mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 04:25:08 +00:00
28 lines
545 B
Plaintext
28 lines
545 B
Plaintext
doctype html
|
|
html
|
|
head
|
|
title nci
|
|
|
|
link(href="/css/index.css", rel="stylesheet", type="text/css")
|
|
|
|
if env === 'development'
|
|
script(type="text/javascript", src="/js/libs/requirejs/require.js")
|
|
else
|
|
script
|
|
include ../static/js/libs/almond/almond.js
|
|
|
|
if env === 'development'
|
|
script
|
|
include ../static/js/requirejs/development.js
|
|
else
|
|
script
|
|
include ../static/js/requirejs/production.js
|
|
script
|
|
include ../static/js/app.build.js
|
|
|
|
script(type="text/javascript").
|
|
require(['app/app']);
|
|
|
|
body
|
|
#content
|