-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
41 lines (37 loc) · 1.2 KB
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
<!doctype html>
<html lang="en" ng-app="app">
<head>
<meta charset="UTF-8">
<title>Portfolio Leonid Kuznecov</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<style>
.content {
margin-top: 20px;
}
</style>
</head>
<body ng-controller="MainCtrl">
<div class="container well content">
<h1>Portfolio by Leonid Kuznecov</h1>
<br/>
<ol>
<li ng-repeat="item in items">
<h4><a ng-href="http://MrChe.github.io/project/{{item.url}}">{{item.title}}</a></h4>
<p>{{item.desc}}</p>
<hr/>
</li>
</ol>
</div>
<script>
var app = angular.module("app", []);
app.controller("MainCtrl", function($scope) {
$scope.items = [{
title: "Github-Issues-Viewer",
url: "github-issues-viewer",
desc: "одностраничное приложение для просмотра issues с выбраного репозитория на github"
}];
})
</script>
</body>
</html>