forked from sauleh/personal_website_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobbies.html
89 lines (74 loc) · 2.68 KB
/
hobbies.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
---
author_profile: true
---
<!doctype html>
<!--
Minimal Mistakes Jekyll Theme 4.15.2 by Michael Rose
Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT license
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
-->
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
<head>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
th {
background-color: #04aa6d;
color: white;
}
</style>
{% include head.html %}
{% include head/custom.html %}
</head>
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
{% include_cached browser-upgrade.html %}
{% include_cached masthead.html %}
<div id="main" role="main">
{% include sidebar.html %}
<div class="archive">
{% unless page.header.overlay_color or page.header.overlay_image %}
<h1 id="page-title" class="page__title">{{ page.title }}</h1>
{% endunless %}
<p style="font-size: 17px; text-align: justify;">
I like spending time in some activities which make me relaxed because I believe it will improve my productivity.
</p>
<p style="font-size: 17px; text-align: justify;">
Here is the list of my leisure time activities:
</p>
<div>
<ul>
<li style="font-size: 17px; text-align: justify;">Playing and Watching Football</li>
<li style="font-size: 17px; text-align: justify;">Watching TV series (especially sitcoms)</li>
<li style="font-size: 17px; text-align: justify;">Playing Video Games</li>
<li style="font-size: 17px; text-align: justify;">YouTube</li>
<li style="font-size: 17px; text-align: justify;">GYM</li>
<li style="font-size: 17px; text-align: justify;">Chess</li>
</ul>
</div>
</div>
</div>
{% if site.search == true %}
<div class="search-content">
{% include_cached search/search_form.html %}
</div>
{% endif %}
<div class="page__footer">
<footer>
{% include footer/custom.html %}
{% include_cached footer.html %}
</footer>
</div>
{% include scripts.html %}
</body>
</html>