-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 2.82 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Collapsus portfolio</title>
<script type="text/javascript" src="jquery.lint.js"></script>
<link rel="stylesheet" href="portfolio.css" type="text/css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="project.js"></script>
<script type="text/javascript" src="projectcollection.js"></script>
<script type="text/javascript">
var projectsData = {
'project1': {
title: 'Лог для двоих',
about: 'Небольшой сервис который помогает, избегая конфликта, "свести счёты".',
exampleUrl: 'http://couplelog.appspot.com/',
sourceUrl: 'http://github.com/collapsus/couplelog',
widgetUrl: 'http://www.yandex.ru/?add=24659&from=promocode'
},
'project2': {
title: 'ЭтанолЛог',
about: 'Для тех, кому интересно какое колличество алкоголя они потребляют.',
exampleUrl: 'http://ethanollog.appspot.com/',
sourceUrl: 'http://github.com/collapsus/ethanollog',
widgetUrl: 'http://www.yandex.ru/?add=24519&from=promocode'
},
'project3': {
title: 'Места для бега',
about: 'Яндекс.Карта на которой отмечены некоторые места, удобные для пробежек.',
exampleUrl: 'http://places4run.appspot.com/',
sourceUrl: 'http://github.com/collapsus/places4run',
widgetUrl: '#'
},
'project4': {
title: 'Мои дороги',
about: 'Яндекс.Карта на которой можно посмотреть некоторые из моих путей.',
exampleUrl: 'http://ymapswidget.appspot.com/',
sourceUrl: 'http://github.com/collapsus/myways',
widgetUrl: '#'
}
},
projects = {};
$(function(){
var projectCollection = new ProjectCollection(projectsData);
});
</script>
</head>
<body>
<h1>Collapsus portfolio</h1>
</body>
</html>