-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
120 lines (120 loc) · 3.09 KB
/
articles.html
File metadata and controls
120 lines (120 loc) · 3.09 KB
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Articles | Matthieu GURAK - Web Developer and Digital World Trainer
</title>
<meta
name="description"
content="Articles of Matthieu GURAK, in the digital world, particularly in Development"
/>
<meta name="keywords" content="cv,developer,digital,html" />
<meta
property="og:title"
content="Articles | Matthieu GURAK - Web Developer and Digital World Trainer"
/>
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Articles of Matthieu GURAK, in the digital world, particularly in Development"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<div class="logo">
<a href="/">
<img
src="./public/logo.png"
alt="Matthieu GURAK, Web Developer and Digital World Trainer"
/>
</a>
Matthieu GURAK
</div>
<nav>
<ul>
<li><a href="/">Homepage</a></li>
<li><a href="/projects.html">Projects</a></li>
<li>
<a href="/articles.html" class="active">Articles</a>
</li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div id="hero" class="full">
<h1>Projects</h1>
<h2>Showroom and some other stuff...</h2>
</div>
<div id="showroom" class="full">
<h3>
List of all articles
<article>
<h4>Lorem ipsum dolor sit amet.</h4>
<spam>Lorem.</spam>
<spam>Eos!</spam>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing
elit. Ex consequatur cumque aliquam odio accusamus
commodi?
</p>
<a href="#">More about it ↓</a>
</article>
<article>
<h4>Quas dolore atque repellat. Reprehenderit?</h4>
<spam>Lorem.</spam>
<spam>Maiores.</spam>
<p>
Alias eius natus aperiam dolores soluta ex, repellat
aut eum laboriosam nihil! Nihil, reprehenderit
facilis?
</p>
<a href="#">More about it ↓</a>
</article>
<article>
<h4>Laudantium, dicta accusamus! Laudantium, quam!</h4>
<spam>Lorem.</spam>
<spam>Sunt?</spam>
<p>
Blanditiis explicabo nesciunt, vel dolor accusamus
fugit quidem doloribus voluptatibus eaque laboriosam
expedita minus natus?
</p>
<a href="#">More about it ↓</a>
</article>
<article>
<h4>Veritatis maxime quidem in beatae.</h4>
<spam>Lorem.</spam>
<spam>Facere!</spam>
<p>
Adipisci a eum culpa obcaecati modi officiis, rem
porro odio sit, magni est alias facere?
</p>
<a href="#">More about it ↓</a>
</article>
</h3>
</div>
</main>
</body>
</html>