Sha256: d58df2001399fac58d5070981d29230db684c53a74b34c7a6fc0d5cc3069d8c9
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder = page.folderName %} {% assign homeData= site.data[folder][lang][file] %} <!DOCTYPE html> <html lang="{{homeData.htmlLangAtt}}"> {% include head/index.html %} <body> {% include header/index.html %} {%- include dropdown/langdropdown.html -%} <div class="flex-container"> <div class="flex-class py-5"> <h1 class="home-top-h1">{{homeData.h1}}</h1> <h2 class="home-top-h2">{{homeData.h2}}</h2> </div> </div> <div class="flex-container"> <div class="flex-class"> <ul class="home-features"> {% for product in homeData.features %} <li style=background:{{product.color}} class="home-feature-box"> <div class="home-inner-box"> <div class="div-cont feature-img"> <img src="{{product.icon}}" alt="star icon"> </div> </div> <div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name" href="{{product.url}}">{{product.name}}</a> </li> {% endfor %} </ul> </div> </div> <div> {{content}} </div> {%- include share/socialshare.html -%} <!-- Footer --> {% include footer/index.html %} {% include script.html %} <!-- Footer End --> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
appscms-tools-theme-0.4.8 | _layouts/home.html |