Sha256: 4e94fcf17afe135bf353d66cbdc4edd9658c88549fb61e75a7b33523d37eb213

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

<head>
  <meta charset='utf-8' />
  <meta http-equiv='X-UA-Compatible' content='IE=edge' />
  <meta name='viewport' content='width=device-width, initial-scale=1' />

<% case @gen.framework %>
<% when 'sinatra' %>
  <%%= erb :'includes/ie-cruft' %>
  <%%= erb :'includes/js-libs' %>
  <%%= erb :'includes/css-libs' %>
  <%%= erb :'includes/fonts-libs' %>
<% when 'jekyll' %>
  {% include ie-cruft.html %}

  {% for lib in site.data.libs.js %}
  <!-- {{ lib.name }} -->
  <script src='{{ lib.url }}'></script>
  {% endfor %}

  {% for lib in site.data.libs.css %}
  <!-- {{ lib.name }} -->
  <link rel='stylesheet' href='{{ lib.url }}'>
  {% endfor %}

  {% for font in site.data.libs.fonts %}
  <!-- {{ font.name }} -->
  <link rel='stylesheet' href='{{ font.url }}'>
  {% endfor %}
<% end %>
<% prefix = '{{ site.baseurl }}' if @gen.framework == 'jekyll' %>

  <link rel='icon' type='image/png' href='<%= prefix %>/assets/favicon.ico' />
  <link rel='stylesheet' href='<%= prefix %>/css/styles.css' />
  <script src='<%= prefix %>/js/<%= @gen.wormname %>.js'></script>
  <title>
  <% case @gen.framework %>
  <% when 'sinatra' %>
  <%%= @title %>
  <% when 'jekyll' %>
  {{ page.title }}
  <% end %>
  </title>
</head>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
skellington-0.8.9 lib/templates/common/includes/header
skellington-0.8.8 lib/templates/common/includes/header
skellington-0.8.7 lib/common/templates/includes/header
skellington-0.8.6 lib/common/templates/includes/header
skellington-0.8.5 lib/common/templates/includes/header
skellington-0.8.4 lib/common/templates/includes/header