pingou / centos / centos.org

Forked from centos/centos.org a year ago
Clone

Blame _layouts/home.html

92cce8
92cce8
<html lang="{{ page.lang | default: 'en' }}">
92cce8
  {% include head.html -%}
92cce8
  <body>
92cce8
    {% include navbar.html -%}
92cce8
    <main class="bg-light">
b11ff6
b11ff6
      <header class="header header__home">
b11ff6
        <section class="header__home__presentation">
b11ff6
          

{{ site.title }}

b11ff6
          

{{ site.description }}

b11ff6
          
b11ff6
            {% for distribution in site.data.centos.distributions %}
b11ff6
            
b11ff6
              
b11ff6
                
b11ff6
                  

{{ distribution.name }}

b11ff6
                  

{{ distribution.description }}

b11ff6
                
b11ff6
              
b11ff6
            
b11ff6
            {% endfor %}
b11ff6
          
b11ff6
        </section>
b11ff6
        <section class="header__home__shortcuts">
b11ff6
          
b11ff6
            {% assign community_items = site.data.centos.navbar | where: "name", "Community" %}
b11ff6
            {% for community_item in community_items %}
b11ff6
            {% for shortcut in community_item.menu %}
b11ff6
            
b11ff6
              
b11ff6
                
b11ff6
                  

b11ff6
                  

{{ shortcut.name }}

b11ff6
                
b11ff6
              
b11ff6
            
b11ff6
            {% endfor %}
b11ff6
            {% endfor %}
b11ff6
          
b11ff6
        </section>
b11ff6
      </header>
b11ff6
      
b11ff6
        
b11ff6
        
b11ff6
        
b11ff6
        
b11ff6
      
b11ff6
92cce8
      {{ content }}
92cce8
      {% include home/news-and-events.html %}
92cce8
      {% include home/planet.html %}
92cce8
    </main>
92cce8
92cce8
    {% include footer.html -%}
92cce8
92cce8
    <script src="{{ site.baseurl }}/assets/js/jquery.min.js"></script>
92cce8
    <script src="{{ site.baseurl }}/assets/js/bootstrap.min.js"></script>
92cce8
    <script src="{{ site.baseurl }}/assets/js/customization.js"></script>
92cce8
92cce8
  </body>
92cce8
</html>