mirror of https://github.com/acid-info/vac.dev.git
updated
This commit is contained in:
parent
048bb45407
commit
0d3d941dbd
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
short_name: dean
|
||||||
|
name: Dean Eigenmann
|
||||||
|
position: Protocol Researcher
|
||||||
|
twitter: DeanEigenmann
|
||||||
|
website: https://dean.eigenmann.me
|
||||||
|
---
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
short_name: oskarth
|
||||||
|
name: Oskar Thoren
|
||||||
|
position: Protocol Researcher
|
||||||
|
twitter: oskarth
|
||||||
|
---
|
10
_config.yml
10
_config.yml
|
@ -18,8 +18,18 @@ sass:
|
||||||
sass_dir: _sass
|
sass_dir: _sass
|
||||||
style: compressed
|
style: compressed
|
||||||
|
|
||||||
|
collections:
|
||||||
|
authors:
|
||||||
|
output: true
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
- scope:
|
- scope:
|
||||||
path: "assets/img"
|
path: "assets/img"
|
||||||
values:
|
values:
|
||||||
image: true
|
image: true
|
||||||
|
- scope:
|
||||||
|
path: ""
|
||||||
|
type: "authors"
|
||||||
|
values:
|
||||||
|
layout: "author"
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
<h1></h1>
|
||||||
|
<div class="container post-content">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-10 ml-auto mr-auto">
|
||||||
|
<h1>{{ page.name }}</h1>
|
||||||
|
<div class="meta">
|
||||||
|
<a href="https://twitter.com/{{ page.twitter }}">Twitter</a>
|
||||||
|
{% if page.website %}
|
||||||
|
• <a href="{{ page.website }}">Website</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
{% assign filtered_posts = site.posts | where: 'author', page.short_name %}
|
||||||
|
{% for post in filtered_posts %}
|
||||||
|
<div class="col-md-12 mt-60">
|
||||||
|
<time>{{ post.date | date: '%B %d, %Y' }}</time>
|
||||||
|
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ layout: default
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-10 ml-auto mr-auto">
|
<div class="col-lg-10 ml-auto mr-auto">
|
||||||
<h1>{{page.title}}</h1>
|
<h1>{{page.title}}</h1>
|
||||||
<div class="meta">{{ page.date | date_to_string }} • <a href="https://twitter.com/{{ page.author }}">{{ page.author }}</a></div>
|
<div class="meta">{{ page.date | date_to_string }} • <a href="/authors/{{ page.author }}">{{ page.author }}</a></div>
|
||||||
<div class="editor-content">
|
<div class="editor-content">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: post
|
||||||
name: "DNS Based Discovery"
|
name: "DNS Based Discovery"
|
||||||
title: "DNS Based Discovery"
|
title: "DNS Based Discovery"
|
||||||
date: 2020-02-7 12:00:00 +0100
|
date: 2020-02-7 12:00:00 +0100
|
||||||
author: DeanEigenmann
|
author: dean
|
||||||
published: true
|
published: true
|
||||||
permalink: /dns-based-discovery
|
permalink: /dns-based-discovery
|
||||||
categories: research
|
categories: research
|
||||||
|
|
Loading…
Reference in New Issue