-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
130 lines (120 loc) · 4.42 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="ro" ng-app="galleryApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head
content must come *after* these tags -->
<title>Projects</title>
<link rel="shortcut icon" href="Images/favicon.ico" />
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">
</script>
<!-- Latest compiled and minified JavaScript -->
<!-- Include all compiled plugins (below), or include individual files
as needed -->
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous">
</script>
<script
src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js">
</script>
<script src="script.js"></script>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet"
href="https://cdn.rawgit.com/GhitaB/default-design/1.0.4/styles.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and
media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body ng-controller="galleryController as gallery">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12">
<h1 class="page-title">{{gallery.title[gallery.language]}}</h1>
<p class="page-description">
{{gallery.description[gallery.language]}}
</p>
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<!-- Choose language -->
<ul class="languages pull-right">
<li ng-repeat="language in gallery.languages">
<img class="flag" ng-src="Images/{{language.short}}.png"
ng-click="gallery.change_language(language.short)">
<b ng-if="language.short == gallery.language">
{{language.text}}
</b>
<span ng-if="language.short != gallery.language">
{{language.text}}
</span>
</li>
</ul>
</div>
</div>
<div id="gallery">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div id="navbar">
<ul class="nav navbar-nav">
<li>
<a href="http://ghitab.blogspot.com">
Back to blog
</a>
</li>
<li>
<a href="http://ghitab.blogspot.ro/p/contact_15.html">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<!-- Project -->
<div class="gallery-item" ng-repeat="item in gallery.items">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12">
<a href="{{item.url}}" target="_blank">
<img ng-src="{{item.img}}"
class="img-responsive" />
</a>
<p class="text-center">
{{item.done}}% {{gallery.complete[gallery.language]}}
</p>
</div>
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>
<a href="{{item.url}}" target="_blank">
{{item.title[gallery.language]}}
</a>
</h3>
<div class="caption">
<p>{{item.text[gallery.language]}}</p>
</div>
<h5>({{item.id}})</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>