Sha256: 360aed57d2a1e843d7c1efe7db2ce49dd70e4fb8d363b76b79d819fb7faed81f

Contents?: true

Size: 1.12 KB

Versions: 6

Compression:

Stored size: 1.12 KB

Contents

{% assign strings = site.data.strings %}
<hr class="sr-only"/>
<h2 class="sr-only">{{ strings.templates | default: "Templates"}}{{ strings.colon | default:":" }}</h2>

<template id="_animation-template">
  <div class="animation-main fixed-top">
    <div class="content">
      <div class="page"></div>
    </div>
  </div>
</template>

<template id="_loading-template">
  <div class="loading">
    <span class="sr-only">{{ strings.loading | default:"Loading…" }}</span>
    <span class="icon-cog"></span>
  </div>
</template>

<template id="_error-template">
  <div class="page">
    <h1 class="page-title">{{ strings.error.title | default:"Error" }}</h1>
    {% capture link %}<a class="this-link" href=""></a>{% endcapture %}
    {% assign text = strings.error.message | default:"Sorry, an error occurred while loading: <!--link-->." %}
    <p class="lead">
      {{ text | replace:"<!--link-->",link }}
    </p>
  </div>
</template>

<template id="_back-template">
  <a id="_back" class="back nav-btn no-hover">
    <span class="sr-only">{{ strings.back | default:"Back" }}</span>
    <span class="icon-arrow-left2"></span>
  </a>
</template>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-7.3.0 _includes/templates.html
jekyll-theme-hydejack-7.2.0 _includes/templates.html
jekyll-theme-hydejack-7.1.1 _includes/templates.html
jekyll-theme-hydejack-7.1.0 _includes/templates.html
jekyll-theme-hydejack-7.0.1 _includes/templates.html
jekyll-theme-hydejack-7.0.0 _includes/templates.html