cv-website

Personal website and CV
git clone https://git.in0rdr.ch/cv-website.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

index.html (4106B)


      1 ---
      2 layout: default
      3 title: Home
      4 ---
      5 
      6 {% include intro.html %}
      7 
      8 <section class="post-list">
      9   <div class="container">
     10     <h2>Professional experience</h2>
     11     {% for post in site.posts %}
     12       {% if post.categories contains "professional" %}
     13       <article class="post-item">
     14         <span class="post-meta date-label">{{ post.nicedate }}</span>
     15         <div class="article-title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a></div>
     16       </article>
     17       {% endif %}
     18     {% endfor %}
     19   </div>
     20   <div class="container">
     21     <h2>Education</h2>
     22     {% for post in site.posts %}
     23       {% if post.categories contains "education" %}
     24       <article class="post-item">
     25         <span class="post-meta date-label">{{ post.nicedate }}</span>
     26         <div class="article-title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a></div>
     27       </article>
     28       {% endif %}
     29     {% endfor %}
     30   </div>
     31   <div class="container">
     32     <h2>Research experience</h2>
     33     {% for post in site.posts %}
     34       {% if post.categories contains "research" %}
     35       <article class="post-item">
     36         <span class="post-meta date-label">{{ post.nicedate }}</span>
     37         <div class="article-title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a></div>
     38       </article>
     39       {% endif %}
     40     {% endfor %}
     41   </div>
     42   <div class="container">
     43     <h2>Teaching experience</h2>
     44     {% for post in site.posts %}
     45       {% if post.categories contains "teaching" %}
     46       <article class="post-item">
     47         <span class="post-meta date-label">{{ post.nicedate }}</span>
     48         <div class="article-title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a></div>
     49       </article>
     50       {% endif %}
     51     {% endfor %}
     52   </div>
     53   <div class="container">
     54     <h2>Publications</h2>
     55     {% for post in site.posts %}
     56       {% if post.categories contains "publication" %}
     57       <article class="post-item">
     58         <p class="post-meta date-label">
     59           {{ post.nicedate }}
     60         </p>
     61         <div class="article-title">
     62           <a class="post-link" href="{{ post.url | relative_url }}">
     63             {{ post.citation }}
     64           </a>
     65           {% if post.bibtexturl %}
     66             <a href="{{ post.bibtexturl }}">{% octicon file-code %}</a>
     67           {% endif %}
     68           {% if post.pdfurl %}
     69             <a href="{{ post.pdfurl }}">{% octicon file %}</a>
     70           {% endif %}
     71         </div>
     72       </article>
     73       {% endif %}
     74     {% endfor %}
     75   </div>
     76   <div class="container" id="blogposts">
     77     <h2>Co-authored blog posts</h2>
     78     {% for post in site.posts %}
     79       {% if post.categories contains "blog" %}
     80       <article class="post-item">
     81         <p class="post-meta date-label">
     82           {{ post.nicedate }}
     83         </p>
     84         <div class="article-title">
     85           <a class="post-link" href="{{ post.url | relative_url }}">
     86             {{ post.citation }}
     87           </a>
     88           {% if post.url %}
     89             <a href="{{ post.blogurl }}">{% octicon link-external %}</a>
     90           {% endif %}
     91         </div>
     92       </article>
     93       {% endif %}
     94     {% endfor %}
     95   </div>
     96   <div class="container" id="speaking">
     97     <h2>Public speaking</h2>
     98     {% for post in site.posts %}
     99       {% if post.categories contains "speaking" %}
    100       <article class="post-item">
    101         <span class="post-meta date-label">{{ post.nicedate }}</span>
    102         <div class="article-title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a></div>
    103       </article>
    104       {% endif %}
    105     {% endfor %}
    106   </div>
    107   <div class="container" id="certs">
    108     <h2>Certifications</h2>
    109     <ul class="list">
    110       <li>Local Internet Registry (LIR) Fundamentals</li>
    111       <li>AWS Certified Solutions Architect – Associate</li>
    112       <li>CKA: Certified Kubernetes Administrator</li>
    113       <li>HashiCorp Certified: Vault Operations Professional</li>
    114       <li>HashiCorp Certified: Terraform Associate</li>
    115       <li><a href="https://www.credly.com/users/andreas-gruhler/badges">Credly Badges</a></li>
    116     </ul>
    117   </div>
    118 </section>