Sha256: bbb962e861f429404f69c1ef0ddb866e1692743088cc425140d952a5fb21a63c
Contents?: true
Size: 800 Bytes
Versions: 6
Compression:
Stored size: 800 Bytes
Contents
<!DOCTYPE html> <html lang='en'> <% case @gen.framework %> <% when 'sinatra' %> <%%= erb :'includes/header' %> <% when 'jekyll' %> {% include header.html %} <% end %> <body> <% if @gen.framework == 'sinatra' %> <%%= erb :'includes/github-corner' if @github_url %> <% end %> <% case @gen.framework %> <% when 'sinatra' %> <%%= erb :'includes/nav' %> <% when 'jekyll' %> {% include nav.html %} <% end %> <div class='container'> <% case @gen.framework %> <% when 'sinatra' %> <%%= yield %> <% when 'jekyll' %> {{ content }} <% end %> </div> <% case @gen.framework %> <% when 'sinatra' %> <%%= erb :'includes/footer' %> <% when 'jekyll' %> {% include footer.html %} <% end %> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems