-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnews.php
More file actions
71 lines (71 loc) · 3.35 KB
/
Copy pathnews.php
File metadata and controls
71 lines (71 loc) · 3.35 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
<?php
require_once("utilities.php");
?>
<!doctype html>
<html lang="en">
<head>
<?php require 'components/head.php'; ?>
<title>News | Flash Chord</title>
</head>
<body>
<?php require 'components/header.php'; ?>
<div class="container">
<h2>News</h2>
</div>
<div class="container">
<!-- BEGIN: News post -->
<div>
<div class="row bg-light mb-2">
<div class="col border-top border-bottom">
<h4 class="text-secondary mt-1 mb-2">May 25, 2025</h4>
</div>
</div>
<div>
<p>Flash Chord is proud to introduce the <a href="/news">News</a> page for announcing updates and
changes for Flash Chord!</p>
<p>This is where you can find announcements about the latest changes to Flash Chord, including the
following recent updates in the latest release:
</p>
<p>
<strong>Release 1.10</strong>
<ul>
<li>Fixed G# in Gb key. (Issue
<a href="https://github.com/KCarlile/flashchord/issues/107">#107</a>)</li>
<li>Added maj9 chord type. (Issue <a href="https://github.com/KCarlile/flashchord/issues/108">#108</a>)</li>
<li>Added m6 chord type. (Issue <a href="https://github.com/KCarlile/flashchord/issues/106">#106</a>)</li>
<li>Added News page and support for Bootstrap icons. (Issue
<a href="https://github.com/KCarlile/flashchord/issues/110">#110</a>)</li>
<li>GitHub Actions now automatically deploy to
<a href="http://dev.flashchord.com/">dev.flashchord.com</a> any changes pushed to the
<code>develop</code> branch. (Issue <a href="https://github.com/KCarlile/flashchord/issues/81">#81</a>)</li>
<li>Paths are now forced to lowercase (e.g., <code>/News</code> becomes <code>/news</code>).
(Issue <a href="https://github.com/KCarlile/flashchord/issues/116">#116</a>)</li>
</ul>
</p>
<p>Also, be sure to check out the list of people who have provided generous contributions to help
support the hosting and development of Flash Chord. You can find the names of supporters open
the <a href="/donate">Donate</a> page.</p>
</div>
</div>
<!-- END: News post -->
</div>
<footer class="pt-4 my-md-5 pt-md-5 border-top">
<div class="container">
<div class="row">
<div class="col-md">
</div>
<div class="col-md">
</div>
<div class="col-md">
</div>
</div>
<div class="row">
<div class="col-12 col-md">
<?php require 'components/copyright.php'; ?>
</div>
</div>
</div>
</footer>
<?php require 'components/footer.php'; ?>
</body>
</html>