forked from rajarju/crepido
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·61 lines (56 loc) · 2.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivan Smrinov | Kanban-esque board of the current stack, favorite tools, and learning list.</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/stylesheets/style.css">
</head>
<body>
<div class="crepido">
<div class="board">
<div class="board__header">
<a href="#" class="board__picture">
<img src="https://ivansmirnov.name/img/profile.jpg" />
</a>
<h3 class="board__name">Ivan Smirnov</h3>
</div>
<div class="board__card board__card--current-stack"><h1>Current Stack</h1><ul>
<li>i3-wm + i3blocks + rofi on ubuntu 14.04</li>
<li>spectacle + path finder on OSX</li>
<li>Ghost for blogging</li>
</ul></div>
<div class="board__card board__card--favorite-tools"><h1>Favorite Tools</h1><ul>
<li><span class="project label label--cli" data-name="cli" data-project="CLI"><i class="fa fa-folder-o"></i>CLI</span> zsh (with oh-my-zsh)</li>
<li><span class="project label label--cli" data-name="cli" data-project="CLI"><i class="fa fa-folder-o"></i>CLI</span> cmus</li>
<li><span class="project label label--chrome" data-name="chrome" data-project="Chrome"><i class="fa fa-folder-o"></i>Chrome</span> Lastpass</li>
<li><span class="project label label--chrome" data-name="chrome" data-project="Chrome"><i class="fa fa-folder-o"></i>Chrome</span> Vimium</li>
<li><span class="project label label--chrome" data-name="chrome" data-project="Chrome"><i class="fa fa-folder-o"></i>Chrome</span> uBlock Origin</li>
</ul></div>
<div class="board__card board__card--learning-list"><h1>Learning List</h1><ul>
<li>Ansible</li>
<li>vim</li>
<li>fasd</li>
<li>docker</li>
</ul></div>
<div class="board__card board__card--collapsible board__card--working-on"><h1>Working On</h1><ul>
<li>Dashboards for my life (Kibana and Tipboard)</li>
<li>Tinc VPN (connect android to personal server)</li>
<li>Blog: blog.ivansmirnov.name</li>
</ul></div>
<div class="board__card board__card--collapsible board__card--recently-completed"><h1>Recently Completed</h1><ul>
<li><input class="status hidden" type="checkbox" value="1"/> Deployed personal gogs server</li>
<li><input class="status hidden" type="checkbox" value="1"/> Configured short link file uploader.</li>
</ul></div>
</div>
</div>
<footer>
Create boards to track users and projects from flat markdown files. <a href="http://github.com/arshad/crepido">Fork on Github</a>
</footer>
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="./assets/javascripts/script.min.js"></script>
</body>
</html>