forked from jamulussoftware/jamuluswebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainhomepage.html
66 lines (63 loc) · 2.69 KB
/
mainhomepage.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
<!DOCTYPE html>
<!--[if IE 9]> <html class="ie9"> <![endif]-->
<html lang="{{ site.active_lang }}">
<head>
<title>{{ page.title }}</title>
{% include headtags.html %}
<link rel="stylesheet" href="/assets/css/home.css">
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "SoftwareApplication",
"name": "Jamulus",
"applicationCategory": "{{ page.ldjAppCategory }}",
"operatingSystem": "Windows 10, macOS 10.11, Linux",
"discussionUrl": "https://github.com/jamulussoftware/jamulus/discussions/",
"license": "GPLv2",
"creator": {
"@type": "Person",
"name": "{{ page.ldjCreator }}"
},
"isAccessibleForFree": true,
"alternateName": "llcon",
"thumbnailUrl": "https://jamulus.io/assets/img/jamulus-icon-2020.svg",
"downloadUrl": "https://github.com/jamulussoftware/jamulus/releases/latest",
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD"
}
}
</script>
</head>
<body class="mainsite">
<header class="fx-row fx-row-center-xs">
<div class="fx-col-100-xs">
<img alt="{{ page.mAltProgIcon }}" width="200" height="200" src="{{ '/assets/img/jamulus-icon-2020.svg' | relative_url }}" id="jamulusicon" />
<h1>Jamulus</h1>
<span>{{ page.mTSlogan }}</span>
</div>
<div class="fx-col-100-xs" id="actionbutton">
<div class="fx-row">
<div class="fx-col-100-xs">
<a href="wiki/Getting-Started" id="get_started_btn_top">{{ page.mTGetStartedNow }}</a>
</div>
<div class="fx-col-100-xs" id="dl_frm_sf_container">
{{ page.mTDownloadNow }} <a href="{{ site.download_root_link }}{{ site.download_file_names.windows }}" target="_blank" rel="noreferrer">Windows</a>, <a href="{{ site.download_root_link }}{{ site.download_file_names.mac }}" target="_blank" rel="noreferrer">Mac</a>, <a href="{{ site.download_root_link }}{{ site.download_file_names.deb-gui }}" target="_blank" rel="noreferrer">Debian/Ubuntu</a> & <a href="{{ site.download_overview_link }}" target="_blank" rel="noreferrer">{{ page.mTOtherPlatforms }}</a>.
</div>
</div>
</div>
</header>
<a href="#mnv" onclick="showNav();return false;" id="navaround" class="hide-on-dt fx-txt-center">{% include general/navbtn.html %}</a>
<div>
<div class="fx-row fx-row-center-xs">
{% include general/nav.html %}
<div id="maincontainer" class="fx-col-100-xs fx-col-50-m">
<noscript class="red"><strong>{{ site.data.general.tNoJSEnabled }}</strong></noscript>
<main lang="{{ page.lang }}">{{ content }}</main>
</div>
</div>
{% include footer.html %}
</div>
</body>
</html>