Skip to content

Commit 53a0031

Browse files
authored
rename images files for better clarity (brisbanesocialchess#95)
docs/assets/bg.jpg -> docs/assets/background.jpg docs/assets/image05.jpg -> docs/assets/background_smaller.jpg docs/assets/image01.jpg -> docs/assets/locations.jpg docs/assets/image03.jpg -> docs/assets/logo.jpg docs/assets/image02.jpg -> docs/assets/organisers.jpg
1 parent ad97f29 commit 53a0031

File tree

12 files changed

+837
-853
lines changed

12 files changed

+837
-853
lines changed

docs/games.html

Lines changed: 53 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
<!DOCTYPE html>
22
<html lang="en" dir="ltr">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Games - Brisbane Social Chess</title>
7-
<meta name="description" content="Fun casual chess games in Brisbane" />
8-
<link rel="stylesheet" href="style.css" />
9-
<link
10-
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap"
11-
rel="stylesheet"
12-
/>
13-
<link rel="icon" type="image/png" href="assets/favicon.png" />
14-
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png" />
15-
</head>
16-
<body>
17-
<div class="background-overlay">
18-
<main class="content-wrapper">
19-
<div class="logo">
20-
<img src="assets/image03.jpg" alt="Brisbane Social Chess Logo" />
21-
<h1>Brisbane Social Chess</h1>
22-
<p>A place for casual chess, for fun and friendly people.</p>
23-
</div>
243

25-
<nav class="nav-links">
26-
<a href="index.html">Home</a>
27-
<a href="rules.html">Rules</a>
28-
<a href="terms.html">Terms</a>
29-
<a href="register.html">How to Register</a>
30-
<a href="games.html" class="active">Games</a>
31-
<a href="minutes.html">Minutes</a>
32-
</nav>
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Games - Brisbane Social Chess</title>
8+
<meta name="description" content="Fun casual chess games in Brisbane" />
9+
<link rel="stylesheet" href="style.css" />
10+
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap" rel="stylesheet" />
11+
<link rel="icon" type="image/png" href="assets/favicon.png" />
12+
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png" />
13+
</head>
14+
15+
<body>
16+
<div class="background-overlay">
17+
<main class="content-wrapper">
18+
<div class="logo">
19+
<img src="assets/logo.jpg" alt="Brisbane Social Chess Logo" />
20+
<h1>Brisbane Social Chess</h1>
21+
<p>A place for casual chess, for fun and friendly people.</p>
22+
</div>
23+
24+
<nav class="nav-links">
25+
<a href="index.html">Home</a>
26+
<a href="rules.html">Rules</a>
27+
<a href="terms.html">Terms</a>
28+
<a href="register.html">How to Register</a>
29+
<a href="games.html" class="active">Games</a>
30+
<a href="minutes.html">Minutes</a>
31+
</nav>
3332

34-
<section class="section">
35-
<h2>Club Games Archive</h2>
36-
<p>
37-
Explore some of the fun and chaotic group games we've played at
38-
different meetups. Each link opens the full game replay.
39-
</p>
33+
<section class="section">
34+
<h2>Club Games Archive</h2>
35+
<p>
36+
Explore some of the fun and chaotic group games we've played at
37+
different meetups. Each link opens the full game replay.
38+
</p>
4039

41-
<div class="game-list">
42-
<!--
40+
<div class="game-list">
41+
<!--
4342
<div class="game-item">
4443
<h3>Queenless Chaos</h3>
4544
<p><strong>Date:</strong> June 28, 2025</p>
@@ -57,20 +56,22 @@ <h3>King’s Hill Brawl</h3>
5756
<p><strong>Date:</strong> July 5, 2025</p>
5857
<p><strong>Location:</strong> West End Rooftop Café</p>
5958
</div>
60-
--></div>
61-
</section>
62-
</main>
63-
</div>
59+
-->
60+
</div>
61+
</section>
62+
</main>
63+
</div>
64+
65+
<!-- Footer -->
66+
<footer class="site-footer">
67+
<p>
68+
&copy; <span id="year"></span> Brisbane Social Chess. All rights
69+
reserved.
70+
</p>
71+
</footer>
72+
<script>
73+
document.getElementById("year").textContent = new Date().getFullYear();
74+
</script>
75+
</body>
6476

65-
<!-- Footer -->
66-
<footer class="site-footer">
67-
<p>
68-
&copy; <span id="year"></span> Brisbane Social Chess. All rights
69-
reserved.
70-
</p>
71-
</footer>
72-
<script>
73-
document.getElementById("year").textContent = new Date().getFullYear();
74-
</script>
75-
</body>
7677
</html>

docs/index.html

Lines changed: 78 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,87 @@
11
<!DOCTYPE html>
22
<html lang="en" dir="ltr">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Brisbane Social Chess</title>
7-
<meta name="description" content="Brisbane's only social chess club" />
8-
<link rel="stylesheet" href="style.css" />
9-
<link
10-
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap"
11-
rel="stylesheet"
12-
/>
13-
<link rel="icon" type="image/png" href="assets/favicon.png" />
14-
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png" />
15-
</head>
16-
<body>
17-
<div class="background-overlay">
18-
<main class="content-wrapper">
19-
<!-- Logo -->
20-
<div class="logo">
21-
<img src="assets/image03.jpg" alt="Brisbane Social Chess Logo" />
22-
<h1>Brisbane Social Chess</h1>
23-
<p>A place for casual chess, for fun and friendly people.</p>
24-
</div>
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Brisbane Social Chess</title>
8+
<meta name="description" content="Brisbane's only social chess club" />
9+
<link rel="stylesheet" href="style.css" />
10+
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap" rel="stylesheet" />
11+
<link rel="icon" type="image/png" href="assets/favicon.png" />
12+
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png" />
13+
</head>
14+
15+
<body>
16+
<div class="background-overlay">
17+
<main class="content-wrapper">
18+
<!-- Logo -->
19+
<div class="logo">
20+
<img src="assets/logo.jpg" alt="Brisbane Social Chess Logo" />
21+
<h1>Brisbane Social Chess</h1>
22+
<p>A place for casual chess, for fun and friendly people.</p>
23+
</div>
2524

2625

27-
<!-- Top Navigation -->
28-
<nav class="nav-links">
29-
<a href="index.html" class="active">Home</a>
30-
<a href="games.html">Games</a>
31-
<a href="minutes.html">Minutes</a>
32-
<a href="register.html">How to Register</a>
33-
<a href="rules.html">Rules</a>
34-
<a href="terms.html">Terms</a>
35-
</nav>
26+
<!-- Top Navigation -->
27+
<nav class="nav-links">
28+
<a href="index.html" class="active">Home</a>
29+
<a href="games.html">Games</a>
30+
<a href="minutes.html">Minutes</a>
31+
<a href="register.html">How to Register</a>
32+
<a href="rules.html">Rules</a>
33+
<a href="terms.html">Terms</a>
34+
</nav>
3635

37-
<!-- Section 1 -->
38-
<section class="section">
39-
<h2>6 Meetups a Week</h2>
40-
<p>
41-
We have meetings every day of the week except Tuesdays. There are
42-
always more meeting times and locations in the works.
43-
</p>
44-
<img src="assets/image01.jpg" alt="Chess Meetup" />
45-
</section>
36+
<!-- Section 1 -->
37+
<section class="section">
38+
<h2>6 Meetups a Week</h2>
39+
<p>
40+
We have meetings every day of the week except Tuesdays. There are
41+
always more meeting times and locations in the works.
42+
</p>
43+
<img src="assets/locations.jpg" alt="Chess Meetup" />
44+
</section>
4645

47-
<!-- Section 2 -->
48-
<section class="section">
49-
<h2>A Dedicated Team of Organisers</h2>
50-
<p>
51-
We are a registered community organisation in Queensland with a
52-
committee. Ready to contribute? We would like to hear from you.
53-
</p>
54-
<img src="assets/image02.jpg" alt="Organisers" />
55-
</section>
46+
<!-- Section 2 -->
47+
<section class="section">
48+
<h2>A Dedicated Team of Organisers</h2>
49+
<p>
50+
We are a registered community organisation in Queensland with a
51+
committee. Ready to contribute? We would like to hear from you.
52+
</p>
53+
<img src="assets/organisers.jpg" alt="Organisers" />
54+
</section>
55+
56+
<!-- Section 3 -->
57+
<section class="section">
58+
<h2>Join Us!</h2>
59+
<p>
60+
Click below to join us on Chess.com or peruse our Facebook page.
61+
Contribute to our projects and website on the GitHub AI powered
62+
social network. Hang out with us live on Discord!
63+
</p>
64+
<div class="button-group">
65+
<a href="https://www.chess.com/club/brisbane-social-chess" class="button">Chess.com</a>
66+
<a href="https://www.facebook.com/BrisbaneSocialChess/" class="button">Facebook</a>
67+
<a href="https://github.com/brisbanesocialchess" class="button">GitHub</a>
68+
<a href="https://discord.com/invite/JWBKhQmzvD" class="button">Discord</a>
69+
</div>
70+
<img src="assets/background_smaller.jpg" alt="Play Chess" />
71+
</section>
72+
</main>
73+
</div>
5674

57-
<!-- Section 3 -->
58-
<section class="section">
59-
<h2>Join Us!</h2>
60-
<p>
61-
Click below to join us on Chess.com or peruse our Facebook page.
62-
Contribute to our projects and website on the GitHub AI powered
63-
social network. Hang out with us live on Discord!
64-
</p>
65-
<div class="button-group">
66-
<a
67-
href="https://www.chess.com/club/brisbane-social-chess"
68-
class="button"
69-
>Chess.com</a
70-
>
71-
<a
72-
href="https://www.facebook.com/BrisbaneSocialChess/"
73-
class="button"
74-
>Facebook</a
75-
>
76-
<a href="https://github.com/brisbanesocialchess" class="button"
77-
>GitHub</a
78-
>
79-
<a href="https://discord.com/invite/JWBKhQmzvD" class="button"
80-
>Discord</a
81-
>
82-
</div>
83-
<img src="assets/image05.jpg" alt="Play Chess" />
84-
</section>
85-
</main>
86-
</div>
75+
<!-- Footer -->
76+
<footer class="site-footer">
77+
<p>
78+
&copy; <span id="year"></span> Brisbane Social Chess. All rights
79+
reserved.
80+
</p>
81+
</footer>
82+
<script>
83+
document.getElementById("year").textContent = new Date().getFullYear();
84+
</script>
85+
</body>
8786

88-
<!-- Footer -->
89-
<footer class="site-footer">
90-
<p>
91-
&copy; <span id="year"></span> Brisbane Social Chess. All rights
92-
reserved.
93-
</p>
94-
</footer>
95-
<script>
96-
document.getElementById("year").textContent = new Date().getFullYear();
97-
</script>
98-
</body>
9987
</html>

0 commit comments

Comments
 (0)