-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
82 lines (72 loc) · 3.53 KB
/
blog.html
File metadata and controls
82 lines (72 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Official website of Jules Gomel, a researcher, brain enthusiast and loving video games, board games, reading and music. Explore my work and my hobbies.">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap"> -->
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="assets/img/icon_fav.webp" type="image/webp">
<link rel="preconnect" href="https://fonts.gstatic.com">
<script src="https://kit.fontawesome.com/f980ba732e.js" crossorigin="anonymous"></script>
<title>Jules Gomel - BLOG</title>
<script src="assets/js/active.js"></script>
</head>
<body>
<header>
<nav class="navbar">
<div class="menu-icon" onclick="toggleMenu()">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-list">
<li><a href="index.html"><i class="fas fa-user"></i> About Me</a></li>
<li><a href="neuro.html"><i class="fas fa-brain"></i> Research</a></li>
<li><a href="games.html"><i class="fas fa-chess-board"></i> Hobbies</a></li>
<li><a href="blog.html"><i class="fas fa-blog"></i> Blog</a></li>
</ul>
</nav>
<section class="profile-section">
<div class="header-content">
<h1 class="retro-font">Welcome to my Blog !</h1>
</div>
</section>
</header>
<main class="blog-list">
<article class="blog-post">
<img src="assets/img/work.webp" alt="Post Thumbnail" class="post-thumbnail">
<div class="post-content">
<h2 class="post-title"><a href="">The blog is under work!</a></h2>
<p class="post-excerpt">Work In Progress</p>
<p class="post-meta">Published on Jan 10, 2025 • Tags: Research, Neuroscience</p>
<a href="" class="read-more">Read More</a>
</div>
</article>
</main>
<footer>
<section id="quote">
<blockquote>
<p>Neuro ergo sum.</p>
</blockquote>
</section>
<section class="social-logos">
<a class="logo link-icon" href="https://github.com/JulesGL" target="_blank" alt="Jules GOMEL GitHub" aria-label="GitHub of Jules Gomel">
<i class="fa-brands fa-github"></i>
</a>
<a class="logo link-icon" href="mailto:jules.gomel@isae-supaero.fr" target="_blank" alt="Jules Gomel Email" aria-label="Email of Jules Gomel">
<i class="fas fa-envelope"></i>
</a>
<a class="logo link-icon" href="https://www.linkedin.com/in/julesgomel/" target="_blank" alt="Jules GOMEL LinkedIn" aria-label="LinkedIn of Jules Gomel">
<i class="fa-brands fa-linkedin"></i>
</a>
<a class="logo link-icon" href="CV.pdf" download="CV_Jules_GOMEL.pdf" alt="Jules GOMEL Resume" aria-label="Resume of Jules Gomel">
<i class="fas fa-file"></i>
</a>
<a class="logo link-icon" href="https://websites.isae-supaero.fr/cne/" target="_blank" alt="Jules GOMEL Neuroergonomics Center Website" aria-label="jules Gomel Lab Site">
<i class="fas fa-brain"></i>
</a>
</section>
<section class="bottom-section">
<p>© 2025 - Jules Gomel</p>
</section>
</footer>
</body>
</html>