-
Notifications
You must be signed in to change notification settings - Fork 1
/
blogs.html
74 lines (64 loc) · 3.3 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="GimerStudiosLogo.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs - Gimer Studios</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Gimer</h1>
<h2>Studios</h2>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="solutions.html">Solutions</a>
<a href="contact.html">Contact</a>
<a href="blogs.html">Blogs</a>
</nav>
<div class="content">
<section id="blogs">
<h2>Blogs</h2>
<p class="tagline">Blogs and updates.</p>
<div class="blog-posts">
<article class="blog-post">
<h3 class="blog-title">Gimer Studios Website Redesign</h3>
<p class="blog-date">Posted on: September 15, 2024</p>
<p>After doing some more practice with HTML and CSS, I finally did a full rewrite of my website. And it looks so much better. I realized the old design was a bit too eye-straining, so I made some changes to the background colors.</p>
<h4>Before:</h4>
<a href="before-design.png" target="_blank">
<img src="before-design.png" alt="Before website design" class="blog-image-thumb">
</a>
<h4>After:</h4>
<a href="after-design.png" target="_blank">
<img src="after-design.png" alt="After website design" class="blog-image-thumb">
</a>
</article>
</div>
<article class="blog-post">
<h3 class="blog-title">Gimer Server Tools 1.8 Folia Update</h3>
<p class="blog-date">Posted on: December 19, 2023</p>
<p>I know I just released an update. However, I just updated Gimer Server Tools to 1.8. This is because I just added Folia support to my Plugin. Well in Beta at least more to come soon. I will probably get more work done on the website. Possibly make a newsletter. I also got a lot of work done on my new plugin today so that is good.</p>
</article>
<article class="blog-post">
<h3 class="blog-title">Gimer Server Tools Update & Studio Updates</h3>
<p class="blog-date">Posted on: December 19, 2023</p>
<p>Version 1.7 of Gimer Server Tools has released with a ChatLogs feature. I'm sorry for the long wait. I have now started work on new plugins. I will release more updates about these plugins once I get to a point where I feel they are ready to be revealed.</p>
</article>
<article class="blog-post">
<h3 class="blog-title">First blog post</h3>
<p class="blog-date">Posted on: December 15, 2023</p>
<p>Currently coding a blogs page for the website, so I can have updates on the current status of things.</p>
</article>
</div>
</section>
</div>
<footer>
© 2024 Gimer Studios. All rights reserved
</div>
</footer>
</body>
</html>