46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
---
|
|
layout: default
|
|
title: Homepage
|
|
metasub: home
|
|
---
|
|
|
|
<div class="jumbotron">
|
|
<h1>Linspector System Monitoring</h1>
|
|
<p style="font-family: monospace;"><Lish:> <span class="cursor" style="display:inline;"> </span></p>
|
|
</div>
|
|
|
|
<div class="col-lg-4">
|
|
<h2>About</h2>
|
|
<p>Linspector is a software for monitoring the vital information of hosts, services and devices in a network. Be sure that Linspector is in a very early stage of development. Use at your own risk... but try! ;)</p>
|
|
<p><a href="/about/" class="btn btn-primary">Read more »</a></p>
|
|
</div>
|
|
|
|
<div class="col-lg-4">
|
|
<h2>License</h2>
|
|
<p>The code of Linspector is licensed under the terms of the <a href="https://mit-license.org/" class="ext">MIT License</a>.<br><br>
|
|
Content on this site is licensed under the <a href="http://creativecommons.org/licenses/by-sa/3.0/" class="ext">CC Attribution-Share Alike 3.0 Unported</a> license.</p>
|
|
<p><a href="/license/" class="btn btn-primary">Read more »</a></p>
|
|
<br>
|
|
</div>
|
|
|
|
<div class="col-lg-4">
|
|
<h2>Latest News</h2>
|
|
<ul class="entries" style="list-style-type: circle;padding-left:20px;">
|
|
{% for post in site.posts limit:4 %}
|
|
<li>
|
|
<a href="{{ post.url }}" title="{{ post.date | date: "%d %B %Y" }} - {{ post.title | truncatehtml }}">{{ post.date | date: "%d %B %Y" }} - {{ post.title | truncatehtml | truncate: 30 }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p><a href="/news/" class="btn btn-primary">Read more »</a></p>
|
|
</div>
|
|
|
|
<h2>Commit Log</h2>
|
|
|
|
<div id="github-commits"></div>
|
|
<script>
|
|
$(function() {
|
|
$('#github-commits').githubInfoWidget({ user: 'linspector', repo: 'linspector', branch: 'master', last: 30 });
|
|
});
|
|
</script>
|
|
|