cv-website

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

index.html (4223B)


      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     <br>
     76     <a href="http://www.merlin.uzh.ch/search/quickContributionSearch?keywords=Andreas+Gruhler">
     77      {% octicon link-external %} List of contributions (UZH)
     78     </a>
     79   </div>
     80   <div class="container" id="blogposts">
     81     <h2>Co-authored blog posts</h2>
     82     {% for post in site.posts %}
     83       {% if post.categories contains "blog" %}
     84       <article class="post-item">
     85         <p class="post-meta date-label">
     86           {{ post.nicedate }}
     87         </p>
     88         <div class="article-title">
     89           <a class="post-link" href="{{ post.url | relative_url }}">
     90             {{ post.citation }}
     91           </a>
     92           {% if post.url %}
     93             <a href="{{ post.blogurl }}">{% octicon link-external %}</a>
     94           {% endif %}
     95         </div>
     96       </article>
     97       {% endif %}
     98     {% endfor %}
     99   </div>
    100   <div class="container" id="speaking">
    101     <h2>Public speaking</h2>
    102     {% for post in site.posts %}
    103       {% if post.categories contains "speaking" %}
    104       <article class="post-item">
    105         <span class="post-meta date-label">{{ post.nicedate }}</span>
    106         <div class="article-title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a></div>
    107       </article>
    108       {% endif %}
    109     {% endfor %}
    110   </div>
    111   <div class="container" id="certs">
    112     <h2>Certifications</h2>
    113     <ul class="list">
    114       <li>AWS Certified Solutions Architect – Associate</li>
    115       <li>CKA: Certified Kubernetes Administrator</li>
    116       <li>HashiCorp Certified: Vault Operations Professional</li>
    117       <li>HashiCorp Certified: Terraform Associate</li>
    118       <li><a href="https://www.credly.com/users/andreas-gruhler/badges">Credly Badges</a></li>
    119     </ul>
    120   </div>
    121 </section>