blog/blog/index.html

45 lines
1.2 KiB
HTML

---
layout: default
title: Blog
---
<h2>THE BLOG</h2>
<p>
<br />
Over here, posts are published about what I studied, think about, listen to, and do during my spare time, including :<br />
<br />
<em>General stuffs about our world and some personal questionings<br />
Development discoveries and achievements<br />
System administration tutorials<br />
Security hardening and "good practices"</em>
</p>
<hr />
<p>
You may now stay updated via news feeds : <a href="/atom.xml">Atom</a> or <a href="/feed.json">JSON</a>.<br />
</p>
{%- if site.search -%}
<p>
You can also use this search box if you are looking for something precisely :<br />
</p>
<input type="text" id="search-input" placeholder="Simply type something in...">
<br />
<ul id="results-container"></ul>
<script src="/js/simple-jekyll-search.min.js"></script>
<script>
var sjs = SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
searchResultTemplate: '<li><a href="{url}" title="{title}" target="_blank">{title}</a></li>',
json: '/search.json',
noResultsText: '',
fuzzy: true,
debounceTime: 250
});
</script>
{% endif %}