-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
121 lines (106 loc) · 2.79 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
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>software engineering blog</title>
<style>
body {
font-family: "Retina", Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8; /* Light gray background */
}
a {
color: Violet;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 10px;
}
.nav-bar-header {
background-color: #1f1f2e;
color: #e6e6e6;
padding: 20px;
text-align: center;
}
.nav-bar-header h2 {
margin: 0;
}
.nav-bar ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #1f1f2e;
text-align: center;
}
.nav-bar li {
display: inline-block;
margin-right: 20px;
}
.nav-bar li a {
display: block;
color: #fff;
padding: 10px 15px;
}
.nav-bar li a:hover {
background-color: #735581;
}
.question-list {
list-style-type: none;
padding: 0;
margin-top: 20px;
}
.question-item {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.question-item h2 {
margin: 0 0 10px 0;
font-size: 24px;
color: #1f1f2e;
}
.question-item p {
margin: 0;
color: #555;
}
</style>
</head>
<body>
<div class="nav-bar-header">
<h2>software engineering blog</h2>
</div>
<div class="nav-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
<div class="container">
<ul class="question-list">
<li class="question-item">
<a href="dynamodb-with-go.html">
<h2>DynamoDB with Golang</h2>
<p>Using Go to connect to DynamoDB</p>
</a>
</li>
<li class="question-item">
<a href="jwt-with-go.html">
<h2>JWT with Golang</h2>
<p>Generating and using JWTs with Go</p>
</a>
</li>
</ul>
</div>
</body>
</html>