nordgedanken-github-io

git clone git://archive.git.mtrnord.blog/Nordgedanken/nordgedanken-github-io.git
Log | Files | Refs | README | LICENSE

default.html (2119B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3     {% include head.html %}
      4         <body>
      5             {% include header.html %}
      6             <section class="about" id="main">
      7                 {% include about.html %}
      8             </section>
      9             <section id="projects">
     10                 <div class="user-details">
     11                     <h1>Projects</h1>
     12                 </div>
     13                 {% for item in site.projects %}
     14                 {% if item.image_side == "right" %}
     15                     <div class="user-projects">
     16                         <div class="images-right">
     17                             <img src="{{ item.image | prepend: site.baseurl }}" />
     18                         </div>
     19                         <div class="contents">
     20                             <h3>{{item.title}}</h3>
     21                             <ul>
     22                                 {% for feature in item.features %}
     23                                     <li>{{feature}}</li>
     24                                 {% endfor %}
     25                             </ul>
     26                             {{item.content}}
     27                             <a class="project-link" href="{{item.project_link}}" target="_blank" rel="noopener">Check it out</a>
     28                         </div>
     29                     </div>
     30                 {% elsif item.image_side == "left" %}
     31                     <div class="user-projects">
     32                         <div class="images-left">
     33                             <img src="{{ item.image | prepend: site.baseurl }}" />
     34                         </div>
     35                         <div class="contents-right">
     36                             <h3>{{item.title}}</h3>
     37                             <ul>
     38                                 <li>Featured Skills</li>
     39                             </ul>
     40                             {{item.content}}
     41                             <a class="project-link" href="{{item.project_link}}" target="_blank" rel="noopener">Check it out</a>
     42                         </div>
     43                     </div>
     44                 {% endif %}
     45                 {% endfor %}
     46             </section>
     47         {{ content }}
     48         {% include footer.html %}
     49     </body>