+
+ {% if page.title == 'Home' %}
+
ZoneMinder1>
+
+
ZoneMinder is a free, open source CCTV Linux application which supports monitoring, alerting and recording of IP, USB and analog cameras. Use it with just about any camera to monitor your home, business, crib, or anything else, for free.
+
+
Learn more
+
+ {% endif %}
{{ content }}
diff --git a/_layouts/page.html b/_layouts/page.html
index 9b64469a0..fabae5635 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -1,9 +1,9 @@
{% include head.html %}
- {% include navigation.ext %}
-
+{% include navigation.ext %}
+
diff --git a/css/main.css b/css/main.css
index 97e562cb6..9db253e48 100644
--- a/css/main.css
+++ b/css/main.css
@@ -1,15 +1,65 @@
+body {
+ background-color: #333;
+ border-top: solid 5px #369;
+ color: #DDD;
+}
+
.navbar {
- background-color: #CCC;
+ background-color: #333;
border:0;
border-radius: 0;
- border-bottom: solid 2px #369;
+}
+
+.nav {
+ margin-top:10px;
}
.navbar-default .navbar-nav > li > a {
- color: #016C9C;
+ color: #369;
+ font-size: 14px;
+ font-weight: bold;
+ text-transform: uppercase;
+ border-radius: 5px;
+ padding:5px 15px;
+
+}
+
+.navbar-default .navbar-nav > li > a:hover {
+ background-color: #fff;
}
h2 {
color: #016C9C;
border-bottom: solid 1px #369;
}
+
+.downloads {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+
+ padding: 0;
+ margin: 0;
+
+ justify-content: space-around;
+}
+
+.download {
+ margin-top:5px;
+ background-color: #444;
+ border-radius: 5px;
+
+ padding: 5px 15px;
+ width: 500px;
+ height: 300px;
+ margin: 10px;
+}
+
+.panel-body {
+ background-color: #444;
+}
+
+.current {
+ background-color: #FFF;
+ border-radius: 5px;
+}
diff --git a/index.html b/index.html
index d835a71e2..a53d46357 100644
--- a/index.html
+++ b/index.html
@@ -4,18 +4,3 @@ title: Home
permalink: /
---
-{% for post in site.posts %}
-
-
-
{{ post.title }}
-
-
-
- {{ post.content }}
-
-
-
-
-{% endfor %}