-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (144 loc) · 6.74 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>PyB1l | Projects</title>
<link rel="stylesheet" href="http://dhbhdrzi4tiry.cloudfront.net/cdn/sites/foundation.min.css">
<style>
.off-canvas-wrapper,
.off-canvas-wrapper-inner {
height:100%;
height:100vh;
}
</style>
</head>
<body>
<div class="off-canvas-wrapper">
<div class="off-canvas-wrapper-inner" data-off-canvas-wrapper>
<div class="off-canvas position-left reveal-for-large" id="my-info" data-off-canvas data-position="left">
<div class="row column">
<br>
<img class="thumbnail" src="profile.png" style="border: none; box-shadow: none">
<!--<img class="thumbnail" src="http://ironsummitmedia.github.io/startbootstrap-freelancer/img/profile.png" style="border: none; box-shadow: none">-->
<h5>Papavassiliou Vassilis</h5>
<p>Software Engineer / Database developer</p>
</div>
</div>
<div class="off-canvas-content" data-off-canvas-content>
<div class="title-bar hide-for-large">
<div class="title-bar-left">
<button class="menu-icon" type="button" data-open="my-info"></button>
<span class="title-bar-title">Papavassiliou Vassilis</span>
</div>
</div>
<div class="callout primary" style="background: #2ba6cb">
<div class="row column" style="color: white">
<h1>Welcome to my Github page.</h1>
<p class="lead">Web Services, web apps, tools, utilities, Python, fun, Postgresql and ... more</p>
</div>
</div>
<hr>
<div class="row small-up-2 medium-up-3 large-up-4" data-equalizer>
<div class="column" data-equalizer-watch>
<div class="row">
<div class="large-2 column">
<img class="thumbnail" src="project.png" style="border: none; box-shadow: none">
</div>
<h3>bottle-neck</h3>
</div>
<blockquote>Helpful tools/utilities for developing web services with <b>bottle.py</b>.</blockquote>
<div class="expanded button-group">
<a class="hollow button">Github</a>
<a class="hollow button">docs</a>
</div>
<hr style="border: None"/>
</div>
<div class="column" data-equalizer-watch>
<div class="row">
<div class="large-2 column">
<img class="thumbnail" src="project.png" style="border: none; box-shadow: none">
</div>
<h3>SchemaFactory</h3>
</div>
<blockquote>General purpose Schema validation library.</blockquote>
<div class="expanded button-group">
<a class="hollow button">Github</a>
<a class="hollow button">docs</a>
</div>
<hr style="border: None"/>
</div>
<div class="column" data-equalizer-watch>
<div class="row">
<div class="large-2 column">
<img class="thumbnail" src="project.png" style="border: none; box-shadow: none">
</div>
<h3>pgtools</h3>
</div>
<blockquote>Python utilities for working with <b>Postgresql</b> databases and API's.</blockquote>
<div class="expanded button-group">
<a class="hollow button">Github</a>
<a class="hollow button">docs</a>
</div>
<hr style="border: None"/>
</div>
<div class="column" data-equalizer-watch>
<div class="row">
<div class="large-2 column">
<img class="thumbnail" src="project.png" style="border: none; box-shadow: none">
</div>
<h3>pyjector</h3>
</div>
<blockquote>A simple implementation of Dependency Injection (DI) pattern for python.</blockquote>
<div class="expanded button-group">
<a class="hollow button">Github</a>
<a class="hollow button">docs</a>
</div>
<hr style="border: None"/>
</div>
<div class="column" data-equalizer-watch>
<div class="row">
<div class="large-2 column">
<img class="thumbnail" src="project.png" style="border: none; box-shadow: none">
</div>
<h3>dbapi-viewer</h3>
</div>
<blockquote>HTTP JSON API wrapper around Postgresql database UDF's and views.</blockquote>
<div class="expanded button-group">
<a class="hollow button">Github</a>
<a class="hollow button">docs</a>
</div>
<hr style="border: None"/>
</div>
<div class="column" data-equalizer-watch>
<div class="row">
<div class="large-2 column">
<img class="thumbnail" src="project.png" style="border: none; box-shadow: none">
</div>
<h3>pymodels</h3>
</div>
<blockquote>A modeling library for creating/handling/filtering models from external resources.</blockquote>
<div class="expanded button-group">
<a class="hollow button">Github</a>
<a class="hollow button">docs</a>
</div>
<hr style="border: None"/>
</div>
</div>
<hr>
<div class="row">
<div class="medium-6 columns">
</div>
<div class="medium-6 columns">
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://dhbhdrzi4tiry.cloudfront.net/cdn/sites/foundation.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>