-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
118 lines (115 loc) · 4.47 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hunter71 IT Solutions</title>
<link rel="shortcut icon" type="image/svg" href="static/hunter71-icon.svg"/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="static/style.css">
<!-- Custom JS -->
<script src="static/script.js"></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/1fa30f3d4d.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<img class="navbar-brand" src="static/hunter71-logo.svg" alt="Hunter71 IT Solutions" width="175" height="50">
<div class="mx-3" id="languagesNav">
<ul class="list-group list-group-horizontal bg-light ml-auto">
<li class="list-group-item bg-light borderless">
<a href="dark/blog.html">
<i class="fa-solid fa-image fa-2xl text-dark" title="Dark Mode"></i>
</a>
</li>
<li class="list-group-item bg-light borderless">
<a href="pl/blog.html">
<img class="selectable-lang" src="static/pl.svg" alt="Polski" title="Polski" width="40" height="25">
</a>
</li>
<li class="list-group-item bg-light borderless">
<a href="">
<img class="active-lang" src="static/gb.svg" alt="English" title="English" width="40" height="25">
</a>
</li>
</ul>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link rounded-pill px-4" href="index.html">About me</a>
</li>
<li class="nav-item">
<a class="nav-link rounded-pill px-4" href="cv.html">CV</a>
</li>
<li class="nav-item">
<a class="nav-link bg-info rounded-pill px-4" href="blog.html">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="container-fluid bg-info text-white py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4">
</div>
<div class="col-md-8">
<h1 class="display-4 font-weight-bold">Blog</h1>
</div>
</div>
</div>
</header>
<!-- Main content -->
<main class="container my-5">
<div class="container mt-5">
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Engineering</h5>
<p class="card-text">Check out my articles on Python and software engineering.</p>
<a class="btn btn-outline-info" href="https://medium.com/@Hunter_71/list/software-engineering-bce8e3e9e566" target="_blank">View Articles</a>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Soft Skills</h5>
<p class="card-text">Check out my articles on teamwork and soft skills.</p>
<a class="btn btn-outline-info" href="https://medium.com/@Hunter_71/list/soft-skills-bfef9733cc0f" target="_blank">View Articles</a>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-light py-3">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p>© 2023 - <i class="fa-solid fa-infinity"></i><span class="mx-3">Hunter71 IT Solutions Tomasz Zięba</span></p>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<!-- Popper.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>