diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-14 05:54:50 -0500 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-14 05:54:50 -0500 |
| commit | c33295b5f98bc53a6a1f2cdf91e440cede3b4a5d (patch) | |
| tree | d3b6ccb3003b939930ffe592894fb3d48c7aacff /views/layout.pug | |
| parent | 4bcc62fd164c5ee6c4fc50077753ba7d969478e3 (diff) | |
| parent | ddd503f21dc4b3368d80b4be475817cd9a13fcd1 (diff) | |
Merge branch 'authentication' of github-tsch-brown:browngraphicslab/Dash-Web into server_database_merge
Diffstat (limited to 'views/layout.pug')
| -rw-r--r-- | views/layout.pug | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/views/layout.pug b/views/layout.pug new file mode 100644 index 000000000..fb22ae770 --- /dev/null +++ b/views/layout.pug @@ -0,0 +1,17 @@ +doctype html +html(lang='') + head + meta(charset='utf-8') + meta(http-equiv='X-UA-Compatible', content='IE=edge') + meta(name='viewport', content='width=device-width, initial-scale=1.0') + title #{title} - Dash + meta(name='description', content='') + meta(name='theme-color' content='#4DA5F4') + meta(name='csrf-token', content=_csrf) + link(rel='shortcut icon', href='/images/favicon.png') + link(rel='stylesheet', href='/css/main.css') + + body + + .container + block content
\ No newline at end of file |
