-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
69 lines (65 loc) · 2.69 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
<html lang="en">
<head>
<title>Hammer++ : Home</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css">
<link rel="icon" type=image/png href="images/favicon-32x32.png" sizes="32x32">
</head>
<body>
<div class="content">
<a class="logo" href="index.html">
<img src="images/logo.png">
</a>
<nav id="navbar"></nav>
<article>
<p class="info">
Hammer++ is a free, extensive modification of Valve's Hammer editor for the Source engine,
with the premise of being a more stable, up-to-date version, with many bugfixes and several improvements
present in modern level editors.
</p>
<div class="section">
<h1 class="section-title">21st of April, 2024</h1>
<p class="section-content">
I haven't worked on the project much because of study occupying my time and burnout.<br>
However due to Team Fortress 2's 64-bit update releasing, an early update was needed.<br>
This build does not have all features I wanted to release, but there is some <a href="updates.html">nice changes</a>.<br>
I have also made the experimental builds for Garry's Mod and Left 4 Dead 2 public.<br>
Stay tuned for an upcoming update with scripting support.
</p>
<p>Thank you for your patience. <a href="download.html">Grab it here!</a></p>
</div>
<div class="section">
<h1 class="section-title">21st of January, 2022</h1>
<p class="section-content">
A major update has just dropped with a whole pack of new features and bugfixes, plus support for Counter-Strike: Global Offensive.
Take a look at the update trailer below, and be sure to checkout the <a href="features.html">list of new goodies</a>.
</p>
<iframe src="https://www.youtube.com/embed/feOO9c5Ibzs" allowfullscreen></iframe>
<p>Interested? <a href="download.html">Try it out now!</a></p>
</div>
<div class="section">
<h1 class="section-title">14th of March, 2021</h1>
<p class="section-content">
Original public release! The trailer for this can be seen below.
</p>
<iframe src="https://www.youtube.com/embed/HSs2hRbWZMY" allowfullscreen></iframe>
</div>
</article>
</div>
<footer>
<a target="_blank" class="link" href="https://ko-fi.com/ficool2">
<img src="images/kofi.png" >
</a>
<p>
Hammer++ is not affiliated with Valve Corporation.
Like or enjoy my work? Support me on <a target="_blank" href="https://ko-fi.com/ficool2"> Ko-fi</a>.
</p>
</footer>
</body>
<script src="javascript/main.js"></script>
<script>
genNav()
</script>
</html>