Skip to content

Latest commit

 

History

History
70 lines (56 loc) · 1.4 KB

writeups_author.md

File metadata and controls

70 lines (56 loc) · 1.4 KB
layout title show_in_nav permalink
default
Writeups by author
false
/writeups_author/
<style> .main_handle, .alt_handle { -margin-right: 0.5rem; } .main_handle { font-size: 2em; } .main_handle + .alt_handle::before { display: inline-block; content: "AKA"; font-size: 0.8em; margin: 0 0.5rem; font-weight: bold; } .alt_handle + .alt_handle::before { display: inline-block; content: ", "; margin-right: 0.3em; } .author ul h3 { display: inline-block; margin: unset; } </style>

Writeups by author

Browse writeups by CTF / latest

{% assign authors = site.data.authors | sort: "handles" %} {% assign writeups = site.writeups | sort: "contest" %}

{% for author in authors %}

{%- for handle in author.handles -%} {%- if handle == author.handles[0] -%} {{ handle | escape }} {%- else -%} {{ handle | escape }} {%- endif -%} {%- endfor -%}

{%- if author.email -%} - {{ author.email | escape }} {%- endif -%}

{% endfor %}