diff options
Diffstat (limited to 'app/views/templates/main.scala.html')
-rw-r--r-- | app/views/templates/main.scala.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/app/views/templates/main.scala.html b/app/views/templates/main.scala.html new file mode 100644 index 0000000..dadfc03 --- /dev/null +++ b/app/views/templates/main.scala.html | |||
@@ -0,0 +1,69 @@ | |||
1 | @(logo: Html)(slogan: Html)(title: String)(content: Html) | ||
2 | |||
3 | <!DOCTYPE html> | ||
4 | |||
5 | <html> | ||
6 | |||
7 | <head> | ||
8 | |||
9 | <meta charset="utf-8"> | ||
10 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
11 | |||
12 | <title>@title</title> | ||
13 | |||
14 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/pure-min.css")"> | ||
15 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/grids-responsive-min.css")"> | ||
16 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/font-awesome.min.css")"> | ||
17 | |||
18 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/konami.css")"> | ||
19 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")"> | ||
20 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/ebe.css")"> | ||
21 | <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/pepal.css")"> | ||
22 | |||
23 | <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")"> | ||
24 | |||
25 | <script src="@routes.Assets.at("javascripts/konami.js")" type="text/javascript"></script> | ||
26 | <script src="@routes.Assets.at("javascripts/cheat.js")" type="text/javascript"></script> | ||
27 | |||
28 | </head> | ||
29 | |||
30 | <body> | ||
31 | |||
32 | <div class="disclaimer-bar yellow-bg"> | ||
33 | This is a dummy scholar project! Do not use for real serious business stuff! | ||
34 | </div> | ||
35 | |||
36 | <div class="page"> | ||
37 | |||
38 | <header> | ||
39 | <div class="pure-g"> | ||
40 | <div class="logo pure-u-1 pure-u-lg-1-2"> | ||
41 | <h1> | ||
42 | <a href="#">@logo</a> | ||
43 | </h1> | ||
44 | <h2> | ||
45 | <a href="#">@slogan</a> | ||
46 | </h2> | ||
47 | </div> | ||
48 | |||
49 | <div class="account-info pure-u-1 pure-u-lg-1-2">@fragments.accountInfos()</div> | ||
50 | </div> | ||
51 | </header> | ||
52 | |||
53 | <div class="content">@content</div> | ||
54 | |||
55 | <footer> | ||
56 | <span class="copyright">© @logo Inc. All rights reserved.</span> | ||
57 | |||
58 | <span class="footer-links"> | ||
59 | <a href="#">Terms of use</a> | ||
60 | - | ||
61 | <a href="#">Privacy policy</a> | ||
62 | </span> | ||
63 | </footer> | ||
64 | |||
65 | </div> | ||
66 | |||
67 | </body> | ||
68 | |||
69 | </html> | ||