-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (138 loc) · 4.67 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
148
149
150
151
152
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% for meta in site.meta %}
<meta name="{{ meta.name }}" content="{{ meta.content }}">
{% endfor %}
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet"
href="//fonts.googleapis.com/css?family=Roboto+Slab:300,400">
<link rel="stylesheet" href="{{ '/assets/stylesheets/styles.css' | relative_url }}?{{ site.time | date: '%s%N' }}" />
<link rel="canonical" href="{{ site.url }}">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics_id }}', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<header class="site-header">
<a href="/" class="brand">
<img src="/assets/images/rainum_logo.svg" alt="Branding" class="logo" width="90" height="90" />
<h1>{{ site.author }}</h1>
<h2>Software Developer</h2>
</a>
<nav class="main-nav">
<ul>
<li><a href="#about" class="scroll-to">About</a></li>
<li><a href="#projects" class="scroll-to">Projects</a></li>
<li><a href="#contact" class="scroll-to">Contact</a></li>
</ul>
</nav>
</header>
<div class="content" role="main">
<section id="about" class="section about-section">
<header class="section-header">
<hr>
<h2>
I develop <strong><span class="ico-desktop"></span> web</strong>
and <strong><span class="ico-mobile"></span> mobile</strong>
products for humans </h2>
<hr>
</header>
<article>
<div class="row-fluid">
<div class="span9">
{{ site.about_me | markdownify }}
</div>
<div class="span3">
<figure>
<img src="/assets/images/vazha.jpg" alt="Vazha" />
</figure>
</div>
</div>
</article>
</section>
<section id="projects" class="section projects-section">
<header class="section-header">
<hr>
<h2>Projects</h2>
<hr>
</header>
{% for project in site.projects %}
<article>
<div class="row-fluid">
<div class="span9">
{% for screenshot in project.screenshots %}
<figure>
<img src="/assets/images/{{ screenshot }}" alt="{{ project.name }}" />
</figure>
{% endfor %}
</div>
<div class="span3">
<dl>
<dt>Project</dt>
<dd><h3>{{ project.name }}</h3></dd>
<dt>Description</dt>
<dd>{{ project.description }}</dd>
<dt>Responsible for</dt>
<dd>{{ project.responsible_for }}</dd>
<dt>Links</dt>
<dd><a href="{{ project.link }}" target="_blank">Website</a></dd>
</dl>
</div>
</div>
</article>
{% endfor %}
</section>
<a href="#" class="back-to-top scroll-to" title="Back to top">↑</a>
</div>
<footer class="site-footer" id="contact">
<hr>
<div class="email-link">
<a href="mailto:{{ site.email }}" target="_blank" title="Drop me a line"
class="ico-envelope"></a>
<a href="https://github.com/{{ site.github_username }}" target="_blank"
title="My GitHub account" class="ico-github"></a>
<a href="{{ site.linkedin_profile }}" target="_blank"
title="My LinkedIn profile" class="ico-linkedin"></a>
</div>
<p>
©
<time datetime="{{ site.time | date: '%Y' }}">
{{ site.time | date: '%Y' }}
</time>
{{ site.author }}
</p>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
(function ($) {
const $root = $('html, body');
const $backTopBtn = $('.back-to-top');
$(window).on('scroll', () => $backTopBtn.toggle($(window).scrollTop() > 400));
$('.scroll-to').on('click', (e) => {
e.preventDefault();
const elId = $(e.target).attr('href');
const elOffset = elId === '#' ? 0 : $(elId).offset().top;
const scrollTime = elOffset / 7;
$root.animate({
scrollTop: elOffset
}, scrollTime > 300 ? scrollTime : 300);
});
}(jQuery));
</script>
</body>
</html>