Rework website

This commit is contained in:
Quentin 2018-05-20 11:48:25 +02:00
parent e661704003
commit 492d9b5780
8 changed files with 9 additions and 14 deletions

View File

@ -1,6 +1,6 @@
name: "Quentin Dufour"
description: "Let's hack !"
meta_description: "Quentin Dufour. Let's hack !"
description: "Doctorant en systèmes distribués"
meta_description: "Quentin Dufour. Doctorant en systèmes distribués"
aboutPage: true

View File

@ -1,5 +1,5 @@
<nav class="main-nav">
{% if page.url != "/index.html" %}
{% if page.url != "/index.html" and page.url != "/"%}
<a href='{{ site.url }}/{{ page.about }}'> <span class="arrow"></span> Blog </a>
{% endif %}

View File

@ -2,10 +2,10 @@
<section id="wrapper">
<header id="header">
<a href='{{ site.baseurl }}about'>
<img id="avatar" class="2x" src="/assets/images/avatar.png"/>
<img id="avatar" class="2x" src="/assets/images/avatar-me.png"/>
</a>
<h1>{{ site.author }}</h1>
<h2>{{ site.description }}</h2>
</header>
</section>
</div>
</div>

View File

@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Quentin Dufour, ingénieur informatique. Sécurité, systèmes, réseaux, libre, développement, backend" />
<meta name="description" content="Quentin Dufour, blog d'un doctorant en systèmes distribués, avec du linux, du réseau et du code." />
<title>{{ site.name }}{% if page.title %} - {{ page.title }}{% endif %}</title>
<link rel="shortcut icon" href="/assets/images/favicon.ico">

View File

@ -1,11 +1,10 @@
---
layout: post
slug: h5ai_cve
slug: h5ai-cve-postmortem
status: draft
sitemap: false
title: Faille dans h5ai, mon postmortem
description: Et maintenant l'attaque à l'indonésienne.
disqus: true
categories:
- sys
tags:

BIN
assets/images/avatar-me.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View File

@ -8,18 +8,14 @@ layout: null
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
<link>{{ site.url }}</link>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
{% for post in site.posts limit:20 %}
{% for post in site.posts limit:40 %}
{% if post.status == "published" %}
<item>
<title>{{ post.title | xml_escape }}</title>
{% if post.author.name %}
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
{% endif %}
{% if post.excerpt %}
<description>{{ post.excerpt | xml_escape }}</description>
{% else %}
<description>{{ post.content | xml_escape }}</description>
{% endif %}
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>