31 lines
805 B
HTML
31 lines
805 B
HTML
{% include head.html %}
|
|
|
|
<div class="container">
|
|
|
|
{% include navigation.ext %}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-9">
|
|
|
|
{% if page.title == 'Home' %}
|
|
<h1>ZoneMinder</1>
|
|
|
|
<p class="lead"> ZoneMinder is a free, open source <abbr title="Closed-Circuit TeleVision">CCTV</abbr> 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.</p>
|
|
|
|
<p><a href="/about" class="btn btn-primary btn-lg" role="button">Learn more</a></p>
|
|
|
|
{% endif %}
|
|
{{ content }}
|
|
</div>
|
|
|
|
<div class="col-sm-3">
|
|
{% include latest_release.ext %}
|
|
|
|
{% include post_index.ext %}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include footer.html %}
|