Skip to content

Commit

Permalink
Added GMRS call sign subtitle
Browse files Browse the repository at this point in the history
  • Loading branch information
ds2600 committed Dec 27, 2023
1 parent 59e58a7 commit 47ffaac
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions common/sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<div class="sidebar">
<!-- Navigation links -->
<h1><?php echo htmlspecialchars($config['callsign']); ?></h1>
<?php if ($config['gmrs_callsign']): ?>
<div class="subtitle"><?php echo htmlspecialchars($config['gmrs_callsign']); ?></div>
<?php endif; ?>
<a href="index.php">Home</a>
<?php
foreach ($menu as $menuItem) {
Expand Down
2 changes: 1 addition & 1 deletion common/version.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?php
define('VERSION', '0.1.3');
define('VERSION', '0.1.4');
1 change: 1 addition & 0 deletions config/config.example.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

return [
'callsign' => '',
'gmrs_callsign' => '',
'db_host' => '',
'db_user' => '',
'db_pass' => '',
Expand Down
7 changes: 7 additions & 0 deletions public/css/arwt.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ html, body {
.sidebar a:hover {
border-radius: 8px;
}

.sidebar .subtitle {
font-size: 14px;
color: #666;
margin-bottom: 20px;
}

.content {
flex-grow: 1;
Expand All @@ -32,6 +38,7 @@ html, body {

h1 {
font-size: 28px;
margin-bottom: 5px;
}

p {
Expand Down

0 comments on commit 47ffaac

Please sign in to comment.