remove trailing / on meta tags (#856)
* remove trailing / on meta tags Meta tags are [void elements](https://html.spec.whatwg.org/multipage/syntax.html#void-elements) which means they are self closing, and do not require a closing tag, nor a trailing `/`. The trailing `/` is something that was required in XHTML but [is ignored in HTML](https://html.spec.whatwg.org/multipage/syntax.html#start-tags). Quoth the spec: > On void elements, [the trailing slash] does not mark the start tag as self-closing but instead is unnecessary and has no effect of any kind. For such void elements, it should be used only with caution — especially since, if directly preceded by an unquoted attribute value, it becomes part of the attribute value rather than being discarded by the parser. * remove trailing / on link tags
This commit is contained in:
parent
bf36101bf2
commit
b33626c3c7
2 changed files with 12 additions and 12 deletions
|
@ -3,13 +3,13 @@
|
|||
{% block head_title %}Bluesky{% endblock %}
|
||||
|
||||
{% block html_head_extra -%}
|
||||
<meta name="description" content="See what's next."/>
|
||||
<meta property="og:type" content="website"/>
|
||||
<meta property="og:title" content="Bluesky Social"/>
|
||||
<meta property="og:description" content="See what's next."/>
|
||||
<meta property="og:image" content="/static/social-card-default.png"/>
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:site" content="@bluesky"/>
|
||||
<meta name="description" content="See what's next.">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:title" content="Bluesky Social">
|
||||
<meta property="og:description" content="See what's next.">
|
||||
<meta property="og:image" content="/static/social-card-default.png">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:site" content="@bluesky">
|
||||
{%- endblock %}
|
||||
|
||||
{% block noscript_extra %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue