Skip to content
Snippets Groups Projects
site-aside.html 2.90 KiB
<aside class="aside  typeset{% if include.align == "left" %}  aside--left{% endif %}">

  {% if page.layout == "post"%}
    <section class="section  section--related-posts">
      {% include post-related.html %}
    </section>

    {% elsif page.layout == "verein" or page.layout == "press" or page.layout == "hackerspace" %}
    <section class="section  section--description">
      <p>{% include space-status.html %}</p>
      <h3> Chaotikum </h3>
      {% include vereinnavigation.html %}
      <iframe allowfullscreen sandbox="allow-top-navigation allow-scripts" width="100%" height="800" src="https://www.mastofeed.com/apiv2/feed?userurl=https%3A%2F%2Fsocial.chaotikum.org%2Fusers%2Fchaotikumev&theme=light&size=100&header=false&replies=false&boosts=false"></iframe>
    </section>


    {% elsif page.layout == "page" or page.layout == "home" or page.layout == "blog" or page.layout == "frontpage"%}
    <section class="section  section--description blogasside">
      <p>{% include space-status.html %}</p>
      <h3>Über uns</h3>
      <p>{{ site.description }}</p>
      {% include nav-social.html %}
      <iframe allowfullscreen sandbox="allow-top-navigation allow-scripts" width="100%" height="800" src="https://www.mastofeed.com/apiv2/feed?userurl=https%3A%2F%2Fsocial.chaotikum.org%2Fusers%2Fchaotikumev&theme=light&size=100&header=false&replies=false&boosts=false"></iframe>
    </section>

    {% elsif page.layout == "project" %}
    <section class="section  section--description">
      <p><b>Status: </b>{{ page.status }}</p>
      <b>Kontakt</b>
      <ul>
      {% for human in page.contact %}
        <li>{{ human }}</li>
      {% endfor %}
      </ul>
      {% if page.image %}
        {% if page.image  contains '://' %}
              <div class=projectthumbnail style="background-image: url({{page.image}}); height: 200px; width: 200px; margin-right: auto; margin-left: auto;  margin-top: 10px;">
        {% else %}
              <div class=projectthumbnail style="background-image: url({{site.baseurl}}/images/thumbnails/{{page.image}}); height: 200px; width: 200px; margin-right: auto; margin-left: auto;  margin-top: 10px;">
      </div>
      {% endif %}
      {% endif %}
      <h3>Artikel</h3>
      {% for post in site.posts %}
        {% if post.categories contains 'blog' %}
          {% if post.tags contains page.tag %}
            <ul>
              <li><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a></li>
            </ul>
          {% endif %}
        {% endif %}
      {% endfor %}
      {% include nav-share.html %}
    </section>

  {% elsif page.layout == "werkstatt" %}
  <section class="section  section--description">
  <h3>Offene Werkstatt</h3>
  <h4>Geräte</h4>
  <ul>
  {% for tool in site.tools %}
    <li><a href="#{{ tool.uid }}">{{ tool.name }}</a></li>
  {% endfor %}
  </ul>
  <h4><a href="#werkzeug">Werkzeug</a></h4>
  </section>
  
  {% endif %}
</aside>