aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/document.html.erb
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-11-20 21:42:50 +0900
committernsfisis <nsfisis@gmail.com>2022-11-20 22:20:42 +0900
commit75402b673c0f630b620904ce3153f8645d89d700 (patch)
tree18dc3e091765267fbd59c4f76702a827c69c1eed /templates/document.html.erb
parenta0738cdd46d6e52463687b903b1e7d09a541aaa1 (diff)
downloadblog.nsfisis.dev-75402b673c0f630b620904ce3153f8645d89d700.tar.gz
blog.nsfisis.dev-75402b673c0f630b620904ce3153f8645d89d700.tar.zst
blog.nsfisis.dev-75402b673c0f630b620904ce3153f8645d89d700.zip
implement cache busting for stylesheets
Diffstat (limited to 'templates/document.html.erb')
-rw-r--r--templates/document.html.erb69
1 files changed, 0 insertions, 69 deletions
diff --git a/templates/document.html.erb b/templates/document.html.erb
deleted file mode 100644
index 9d93696..0000000
--- a/templates/document.html.erb
+++ /dev/null
@@ -1,69 +0,0 @@
-<% _main_stylesheet = '/style.css' %>
-<% _author = attr 'author' %>
-<% _description = attr 'description' %>
-<% _lang = attr 'lang' %>
-<% _site_copyright_year = attr 'site-copyright-year' %>
-<% _copyright_year = attr 'copyright-year' %>
-<% _revisions = attr 'revision-history' %>
-<% _site_name = attr 'site-name' %>
-<% _tags = attr 'tags' %>
-<% _doctitle = doctitle %>
-<% _header_title = header.title %>
-<% _content = content %>
-<!DOCTYPE html>
-<html lang="<%= _lang %>">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="author" content="<%= _author %>">
- <meta name="copyright" content="&copy; <%= _copyright_year %> <%= _author %>">
- <meta name="description" content="<%= _description %>">
- <meta name="keywords" content="<%= _tags.map(&:label).join(',') %>">
- <link rel="icon" type="image/svg+xml" href="/favicon.svg">
- <title><%= _doctitle %> | <%= _site_name %></title>
- <link rel="stylesheet" href="/hl.css">
- <link rel="stylesheet" href="<%= _main_stylesheet %>">
- <link rel="stylesheet" href="/custom.css">
- </head>
- <body class="single">
- <header class="header">
- <nav class="nav">
- <p class="logo">
- <a href="/"><%= _site_name %></a>
- </p>
- </nav>
- </header>
- <main class="main">
- <article class="post-single">
- <header class="post-header">
- <h1 class="post-title"><%= _header_title %></h1>
- <% if not _tags.empty? %>
- <ul class="post-tags">
- <% for tag in _tags %>
- <li class="tag">
- <a href="/tags/<%= tag.slug %>/"><%= tag.label %></a>
- </li>
- <% end %>
- </ul>
- <% end %>
- </header>
- <div class="post-content">
- <section>
- <h2 id="changelog">更新履歴</h2>
- <ol>
- <% for revision in _revisions %>
- <li class="revision">
- <time datetime="<%= revision.date %>"><%= revision.date %></time>: <%= revision.remark %>
- </li>
- <% end %>
- </ol>
- </section>
- <%= _content %>
- </div>
- </article>
- </main>
- <footer class="footer">
- &copy; <%= _site_copyright_year %> <%= _author %>
- </footer>
- </body>
-</html>