-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
63 lines (62 loc) · 3.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<!--
~ Copyright (C) 2014 Maxime Falaize
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html ng-app="cvGeneratorApp">
<head>
<title>CV Generator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="screen" href="css/flags.css"/>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.15/angular.min.js"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.15/angular-animate.min.js"></script>
<script type="text/javascript" src="js/generator.js"></script>
<link rel="stylesheet" type="text/css" media="screen"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" media="screen"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap-theme.min.css"/>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/2.2.0/jszip.min.js"></script>
</head>
<body ng-controller="CVGeneratorController">
<div class="modal fade" id="localeModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Choose your language</h4>
</div>
<div class="modal-body">
<label class="control-label">Choose your CV language</label>
<select id="locale" ng-model="selectedLocale" class="form-control">
<option ng-repeat="supported in supportedLocales" value="{{supported.locale}}">{{supported.label}}
</option>
</select>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" ng-click="loadGenerator()">Choose</button>
</div>
</div>
</div>
</div>
<div ng-if="showGenerator">
<ng-include src="'include/generator.html'"></ng-include>
</div>
</body>
</html>