vac.dev/_layouts/research-log.html
Maria Rushkova 59b95cdc98 New design (#42) (#45)
* Add new design

* Use yarn instead of npm

* Add 404 page style

* Update "See VAC Openings" CTA

* Change VAC to Vac

* Change specs link

* Keep post categories

* Change code formatting

* Update images

* Update media links

* Add media image default

* Update package.json

* Add twitter cards meta data

* Add media section back

* Remove images

* Comment script for form

* Change media urls to https

* Import font locally

* Add Anonymous font

* Change inner page layout

* Change pre code style

* Add font preloading

* Change post content styles

* Add alt attribute

* Change footer research links

* Update gitignore

* Add Fathom analytics

* Update links

* Change gif to video

* Add work cards links back

* Change footer spacing

* Change logo size

* Fix header

* Centered section join

* Make cards clickable

* Align left section join

* Remove graphic & video section about

* Return logo size

* Add post for Waku v1 vs Waku v2 bandwidth comparison (#43)

* Add post for Waku v1 vs Waku v2 bandwidth comparison

* Addressing PR comments

* Added future work. Minor changes to intro.

(cherry picked from commit 007696cfc9898178a03a34123c59176913de3463)

* Add <code> styles

* Add Hanno page

* Add opinion piece on ethics in surveillance tech (#44)

* Add opinion piece on ethics in surveillance tech

* Change published date. Added preface.

* wrong date - today is 3rd

(cherry picked from commit c64f5a889e48525a24313b17be808411620d1622)

* Add circe page

Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com>
Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com>

Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com>
Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com>
2022-01-13 00:02:14 +09:00

40 lines
1.7 KiB
HTML

---
layout: default
---
<section class="container max-w-screen-xl flex flex-col sm:flex-row pt-10 pb-8 lg:py-10 border-b">
<div class="heading-block w-full sm:w-2/12 lg:w-3/12 flex lg:justify-center items-start pb-3 sm:pb-0">
<a class="link link--back" href="/">Back</a>
</div>
<div class="info-block w-full sm:w-10/12 lg:w-9/12">
<h1 class="text-xl md:text-xxl mb-5 lg:mb-10 sm:max-w-md lg:max-w-xl">Research log</h1>
<p class="section__text text-s lg:text-base italic l:max-w-md">We take inspiration from core internet architecture, existing survey work and other efforts that have been done to decompose the problem into orthogonal pieces.</p>
</div>
</section>
{%- comment -%}
<section class="container max-w-screen-xl flex flex-col sm:flex-row pt-10 pb-3 sm:pb-8 border-b">
<div class="heading-block w-full sm:w-2/12 lg:w-3/12 pr-2 ml:pr-0">
<h2 class="text-sm font-semibold mb-5 text-center">Open problems</h2>
</div>
<div class="info-block w-full sm:w-10/12 lg:w-9/12">
<ul class="container s:mx-auto flex flex-col flex-wrap sm:flex-row">
{% for post in site.posts %} {% if post.categories contains "problem" %} {% include post-preview.html %} {% endif %} {% endfor %}
</ul>
</div>
</section>
{%- endcomment -%}
<section class="container max-w-screen-xl flex flex-col sm:flex-row pt-10 pb-3 sm:pb-8">
<div class="heading-block w-full sm:w-2/12 lg:w-3/12 pr-2 ml:pr-0">
<h2 class="text-sm font-semibold mb-5 text-center">Research entries</h2>
</div>
<div class="info-block w-full sm:w-10/12 lg:w-9/12">
<ul class="container s:mx-auto flex flex-col flex-wrap sm:flex-row">
{% for post in site.posts %} {% include post-preview.html %} {% endfor %}
</ul>
</div>
</section>