1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-13 00:50:06 +00:00

feat: add views and styles for rendering html

This commit is contained in:
2021-10-07 17:22:00 +00:00
parent bd92b8b983
commit a446f5c4f7
4 changed files with 33 additions and 2 deletions

13
src/views/layout.pug Normal file
View File

@@ -0,0 +1,13 @@
block variables
doctype html
html
head
meta(charset="utf-8")
meta(name="viewport", content="width=device-width, initial-scale=1, shrink-to-fit=no")
meta(name="theme-color", content="#000000")
link(rel="shortcut icon", href="/favicon.ico")
link(rel="stylesheet" href="/styles.css")
title SASJS Executor
body
div#root
block layout-content