-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 2.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html ng-app="questopia">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<title>Questopia - FREE YOUR MIND</title>
<link rel="stylesheet" href="css/html5reset-1.6.1.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,300italic,700&subset=latin,cyrillic-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/qt_main.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.4/angular.min.js"></script>
<script src="app.js"></script>
<script src="controllers/AppController.js"></script>
<script src="directives/angular-background.min.js"></script>
</head>
<body ng-controller="AppController" dynamic-background background-image="{{'images/whisky_ice_cigar-wallpaper_large.jpg'}}" background-repeat="no-repeat" background-size="100%" background-size="auto auto" background-clip="border-box" background-origin="padding-box">
<header role="logo">
<img src="images/qt_logo_dark.svg" alt="Questopia - free your mind" class="logo">
<div class="lang">
<a href="#" ng-click="toggleLang()">{{texts.lang}}</a>
</div>
</header>
<main role="content">
<article lang="en" ng-show="lang==='EN'">
<div class="messages" ng-repeat="(property, message) in texts.en track by $index">
<h3 ng-if="property==='headingOne'">{{message}}</h3>
<h2 ng-if="property==='headingTwo'">{{message}}</h2>
<h1 ng-if="property==='headingThree'">{{message}}</h1>
</div>
</article>
<article lang="bg" ng-show="lang==='BG'">
<div class="messages" ng-repeat="(property, message) in texts.bg track by $index">
<h3 ng-if="property==='headingOne'">{{message}}</h3>
<h2 ng-if="property==='headingTwo'">{{message}}</h2>
<h1 ng-if="property==='headingThree'">{{message}}</h1>
</div>
</article>
</main>
<footer role="footer">
<em>Questopia 2015</em>
</footer>
</body>
</html>