-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
133 lines (130 loc) · 5.98 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<title>Podcast Generator</title>
<meta charset="utf-8">
<link ref="stylesheet" href="style.css">
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="stylesheet" href="css/animate.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<nav>
<div class="nav-wrapper green darken-1">
<a href="index.html" class="brand-logo">PodcastGenerator</a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="http://www.podcastgenerator.net/demoV2/">Demo</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div>
</nav>
<ul class="sidenav" id="mobile-demo">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="http://www.podcastgenerator.net/demoV2/">Demo</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</header>
<main>
<div class="container">
<div class="section">
<div class="center">
<h1>Podcast Generator</h1>
<p>
Open Source Podcast Publishing Solution since 2006<br>
<br>
<a href="download.html" class="waves-effect waves-light btn-large green darken-1">Get It</a>
</p>
</div>
<div class="row">
<div class="col s12 m4 animated lightSpeedIn">
<div class="icon-block">
<h2 class="center"><i class="material-icons">flash_on</i></h2>
<h4 class="center">Click & Go</h4>
<p>
Extremely quick 3-step installaiot. Works in any web hosting with PHP. No Database rquired!
</p>
</div>
</div>
<div class="col s12 m4 animated lightSpeedIn">
<div class="icon-block">
<h2 class="center"><i class="material-icons">child_care</i></h2>
<h4 class="center">Power & Simple</h4>
<p>
Easy & intuitive web interface to publish audio and video podcasts.
</p>
</div>
</div>
<div class="col s12 m4 animated lightSpeedIn">
<div class="icon-block">
<h2 class="center"><i class="material-icons">rss_feed</i></h2>
<h4 class="center">Newbie-Proof technology</h4>
<p>
Just upload your content. All the rest is "automagic".
</p>
</div>
</div>
<div class="col s12 m4 animated lightSpeedIn">
<div class="icon-block">
<h2 class="center"><i class="material-icons">g_translate</i></h2>
<h4 class="center">Customizable</h4>
<p>
Support for multiple themes and languages.
</p>
</div>
</div>
<div class="col s12 m4 animated lightSpeedIn">
<div class="icon-block">
<h2 class="center"><i class="material-icons">cloud_upload</i></h2>
<h4 class="center">Cross-Platform</h4>
<p>
Works with iTunes, Spotify and friends.
</p>
</div>
</div>
<div class="col s12 m4 animated lightSpeedIn">
<div class="icon-block">
<h2 class="center"><i class="material-icons">code</i></h2>
<h4 class="center">Open Source</h4>
<p>
This is 100% free software under GPLv3. Really, no bamboozle!
</p>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="page-footer green darken-1">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Podcast Generator</h5>
<p class="grey-text text-lighten-4">Open Source Podcast Publishing Solution since 2006</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2006-2020 Alberto Betella, Emil Engler and others
<a class="grey-text text-lighten-4 right" href="https://github.com/PodcastGenerator/PodcastGenerator">GitHub</a>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" type="text/javascript"></script>
<script src="js/materialize.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.sidenav').sidenav();
});
</script>
</body>
</html>