Skip to content

Commit 7a8896a

Browse files
committed
chore: moving template source files to root
1 parent 8b2c154 commit 7a8896a

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

i18n/en_us.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"hello_world": "Hello World!"
3+
}

scss/welcome.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
color: $theme-color;
3+
}

views/welcome.ejs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8"/>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
7+
<meta theme-color="<%= themeColor %>"/>
8+
9+
<title><%= i18n.hello_world %></title>
10+
11+
<style type="text/css">
12+
<%= css %>
13+
</style>
14+
</head>
15+
16+
<body>
17+
<h1><%= i18n.hello_world %></h1>
18+
<div id="app"></div>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)