-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (100 loc) · 4.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<title>P-Blog</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header class="title space">
<h1>Philips Blog</h1>
</header>
<nav class="navigation-container space">
<div class="link-container">
<a class="link" href="pages/blog-posts/flutter-blog-post.html">Newest Post</a>
<a class="link" href="pages/blog-posts/dart-blog-post.html">Dart Post</a>
</div>
<div class="button-container">
<button class="primary-button">Follow</button>
<form action="pages/subscribe/subscribe.html">
<button class="secondary-button">Subscribe</button>
</form>
</div>
</nav>
<main class="blog-content space">
<a class="undecorated-link" href="pages/blog-posts/flutter-blog-post.html" role="button">
<div class="preview-card">
<div class="card-title">
<h2>Flutter released V2.0!!!</h2>
</div>
<div class="image-container">
<img class="thumbnail" src="images/flutterio-icon.svg" alt="Flutter Logo">
</div>
<div class="text">
With the beginning of March the Flutter Team announced a stable Flutter release V2.0.
Why a major version update? Continue reading to find out!
</div>
<div class="indicator">
<img src="images/navigate_next-24px.svg" alt="Navigation Indicator">
</div>
</div>
</a>
<a class="undecorated-link" href="pages/blog-posts/dart-blog-post.html" role="button">
<div class="preview-card">
<div class="card-title">
<h2>Dart V2.12.0</h2>
</div>
<div class="image-container">
<img class="thumbnail" src="images/dart.svg" alt="Dart Logo">
</div>
<div class="text">
On the 3rd of March the Dart Team announced release V2.12 with Null Safety.
Continue reading to check the details!
</div>
<div class="indicator">
<img src="images/navigate_next-24px.svg" alt="Navigation Indicator">
</div>
</div>
</a>
<div class="preview-card">
<div class="card-title">
<h2>Just like the newspaper from yesterday</h2>
</div>
<div class="image-container">
<img class="thumbnail" src="images/dart.svg" alt="Dart Logo">
</div>
<div class="text">
Just a dummy card, to show the ability to scroll inside grid main element! No functionality at all
</div>
<div class="indicator">
<img src="images/navigate_next-24px.svg" alt="Navigation Indicator">
</div>
</div>
<div class="preview-card">
<div class="card-title">
<h2>Just like the newspaper from yesterday</h2>
</div>
<div class="image-container">
<img class="thumbnail" src="images/dart.svg" alt="Dart Logo">
</div>
<div class="text">
Just a dummy card, to show the ability to scroll inside grid main element! No functionality at all
</div>
<div class="indicator">
<img src="images/navigate_next-24px.svg" alt="Navigation Indicator">
</div>
</div>
</main>
<footer class="footer space">
<div class="copyright">
© PDGallus 2021
</div>
<div class="design-system">
<form action="pages/design-system/design-system.html">
<button class="secondary-button" >Design System</button>
</form>
</div>
</footer>
</body>
</html>