-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (45 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Píratar</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script src="script.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body ng-app="myApp">
<div class="container" ng-controller="mainController">
<div class="row">
<div class="col-md-12">
<h2>Kerfi Pírata</h2>
<p>Listi yfir hin ýmsu kerfi Pírata sem eru í rekstri og/eða þróun ásamt og ábyrgðarmönnum þeirra.</p>
</div>
</div> <!-- end row -->
<div class="row">
<div class="col-md-6 col-xs-8">
<input type="search" class="form-control" ng-model="q" placeholder="Leita / sía" />
</div>
</div> <!-- end row -->
<div class="row">
<div class="col-md-12">
<ul>
<li ng-repeat="item in websites| filter:q ">
<strong>{{ item.name }}</strong><br />
Slóð: <a href="{{item.url}}" target="_blank">{{ item.url}}</a><br />
Tengiliður: {{ item.person }}<br />
</li>
</ul>
</div>
<div class="col-md-12">
<h4>Annað</h4>
<ul>
<li><a href="https://github.com/piratar">Kóðageymsla - Github</a></li>
<li><a href="https://github.com/piratar/kerfi">Kóðinn fyrir þessa síðu</a> - endilega sendið inn breytingabeiðni (Pull Request eða Issue) ef eitthvað vantar eða þarf að laga!</li>
</ul>
</div>
</div> <!-- end row -->
</div> <!-- End container -->
</body>
</html>