Rework website
This commit is contained in:
parent
e661704003
commit
492d9b5780
8 changed files with 9 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
||||||
name: "Quentin Dufour"
|
name: "Quentin Dufour"
|
||||||
description: "Let's hack !"
|
description: "Doctorant en systèmes distribués"
|
||||||
meta_description: "Quentin Dufour. Let's hack !"
|
meta_description: "Quentin Dufour. Doctorant en systèmes distribués"
|
||||||
|
|
||||||
aboutPage: true
|
aboutPage: true
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<nav class="main-nav">
|
<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>
|
<a href='{{ site.url }}/{{ page.about }}'> <span class="arrow">←</span> Blog </a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
<section id="wrapper">
|
<section id="wrapper">
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<a href='{{ site.baseurl }}about'>
|
<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>
|
</a>
|
||||||
<h1>{{ site.author }}</h1>
|
<h1>{{ site.author }}</h1>
|
||||||
<h2>{{ site.description }}</h2>
|
<h2>{{ site.description }}</h2>
|
||||||
</header>
|
</header>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=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>
|
<title>{{ site.name }}{% if page.title %} - {{ page.title }}{% endif %}</title>
|
||||||
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
slug: h5ai_cve
|
slug: h5ai-cve-postmortem
|
||||||
status: draft
|
status: draft
|
||||||
sitemap: false
|
sitemap: false
|
||||||
title: Faille dans h5ai, mon postmortem
|
title: Faille dans h5ai, mon postmortem
|
||||||
description: Et maintenant l'attaque à l'indonésienne.
|
description: Et maintenant l'attaque à l'indonésienne.
|
||||||
disqus: true
|
|
||||||
categories:
|
categories:
|
||||||
- sys
|
- sys
|
||||||
tags:
|
tags:
|
BIN
assets/images/avatar-me.png
Normal file
BIN
assets/images/avatar-me.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
assets/images/avatar-me@2x.png
Normal file
BIN
assets/images/avatar-me@2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
8
feed.xml
8
feed.xml
|
@ -8,18 +8,14 @@ layout: null
|
||||||
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
|
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
|
||||||
<link>{{ site.url }}</link>
|
<link>{{ site.url }}</link>
|
||||||
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
|
<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" %}
|
{% if post.status == "published" %}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ post.title | xml_escape }}</title>
|
<title>{{ post.title | xml_escape }}</title>
|
||||||
{% if post.author.name %}
|
{% if post.author.name %}
|
||||||
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
|
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if post.excerpt %}
|
<description>{{ post.content | xml_escape }}</description>
|
||||||
<description>{{ post.excerpt | xml_escape }}</description>
|
|
||||||
{% else %}
|
|
||||||
<description>{{ post.content | xml_escape }}</description>
|
|
||||||
{% endif %}
|
|
||||||
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
||||||
<link>{{ site.url }}{{ post.url }}</link>
|
<link>{{ site.url }}{{ post.url }}</link>
|
||||||
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
||||||
|
|
Loading…
Reference in a new issue