html: fix invalid </meta>, </link>, </input> closing tags.

This commit is contained in:
evazion
2018-08-17 18:31:16 -05:00
parent e2cc40084a
commit 3f7b1e0b13
3 changed files with 5 additions and 5 deletions

View File

@@ -66,10 +66,10 @@
<%= content_for(:html_header) do %>
<link href="<%= posts_path(:format => 'atom', :tags => params[:tags]) %>" rel="alternate" title="ATOM" type="application/atom+xml" />
<%= content_tag(:link, nil, rel: "prefetch", href: next_page_url, as: "html", crossorigin: "use-credentials") %>
<%= content_tag :link, nil, rel: "next", href: next_page_url %>
<%= tag.link rel: "prefetch", href: next_page_url, as: "html", crossorigin: "use-credentials" %>
<%= tag.link rel: "next", href: next_page_url %>
<% if prev_page_url %>
<%= content_tag :link, nil, rel: "prev", href: prev_page_url %>
<%= tag.link rel: "prev", href: prev_page_url %>
<% end %>
<% if @post_set.has_wiki? %>
<meta name="description" content="<%= strip_dtext(@post_set.wiki_page.presenter.excerpt) %>">