1
0
Fork 0

Inserted two custom text sections for showing own text

- one in header
- one between header and table-tab-section

You can customize the text with your own html.
main
Kim Huebel 3 years ago
parent 7f2953de4e
commit 62c615904b

@ -61,10 +61,15 @@
<span class="float:left">
<a class="navbar-brand" href="#">MMDVM-Dashboard by DG9VH</a>
</span>
<!-- Custom Headline Text -->
<span class="navbar-brand float:center"><script type="text/javascript">document.write(customHeadlineText);</script></span>
<!-- Custom Headline Text End -->
<span class="navbar-brand float:right">Websocket-Based</span>
</div>
</nav>
<!-- Custom Text -->
<script type="text/javascript">document.write(customText);</script>
<!-- Custom Text End -->
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" name="currtx">
<a class="nav-link" id="currtx-tab" data-toggle="tab" href="#currtx" role="tab" aria-controls="currtx" aria-selected="false">Currently TXing</a>

@ -1,5 +1,5 @@
// config structure version, please change to value in github-file after update and adding new values
var config_struc_ver = 20210421.1;
var config_struc_ver = 20210501.1;
// 1 = show link to QRZ.com, 0 = off
var qrz = 1;
@ -43,3 +43,10 @@ var dashboard_blacklist = [
// 1 = enable dark display theme, 0 = use bright theme
var useDarkTheme = 1;
// Here you can put in your own html to be shown centered in the headline, to show no text, just set it to ``
var customHeadlineText = `Custom-Headline-Text`;
// Here you can put your own html to be shown between the header and the table-section, to show no text, just set it to ``
var customText = `<h2>This is an example</h2>
<p>you can use all html-tags and multiline-text.</p>`;

@ -1,4 +1,4 @@
var act_config_struc_ver = 20210321.1;
var act_config_struc_ver = 20210501.1;
var messagecount = 0;
var ts1TXing = null;
var ts2TXing = null;

@ -1 +1 @@
var dashboard_version = "2021-05-01 10:51:24";
var dashboard_version = "2021-05-01 12:17:01";

Loading…
Cancel
Save