forked from ZoneMinder/zoneminder.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (35 loc) · 1.01 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
---
layout: home
title: Home
permalink: /
---
<div id="info">
<h2>What people are using ZoneMinder for</h2>
<div class="row">
{% for use in site.data.usage %}
<div class="animated zoomIn col-sm-3">
<img src="{{ use.url }}" alt="{{ use.text }}" />
<p>{{ use.text }}</p>
</div>
{% endfor %}
</div>
<h2>Why ZoneMinder is so awesome</h2>
<div class="row">
<div class="col-sm-5 col-sm-offset-1">
<ul>
<li>It's free and open source.</li>
<li>You are in control of your data.</li>
<li>Works with a huge list of cameras.</li>
<li>Most scalable NVR/DVR system available.</li>
</ul>
</div>
<div class="col-sm-5 col-sm-offset-1">
<ul>
<li>Easy to install - from package or source.</li>
<li>APIs allow for third-party integration.</li>
<li>zmNinja - Awesome mobile and desktop app.</li>
<li>Amazing 3rd party integrations - ALPR, Object/Person Detection, Event Blending and more</li>
</ul>
</div>
</div>
</div> <!-- end info -->