Move symfony stuff to own folder
This commit is contained in:
2
symfony/templates/components/head/_feeds.html.twig
Normal file
2
symfony/templates/components/head/_feeds.html.twig
Normal file
@@ -0,0 +1,2 @@
|
||||
<link rel="alternate" type="text/xml" title="Blog RSS" href="/blog/rss.xml">
|
||||
<link rel="alternate" type="text/xml" title="Links RSS" href="/links/rss.xml">
|
||||
3
symfony/templates/components/head/_indie_web.html.twig
Normal file
3
symfony/templates/components/head/_indie_web.html.twig
Normal file
@@ -0,0 +1,3 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
<link rel="token_endpoint" href="https://tokens.indieauth.com/token">
|
||||
<link rel="micropub" href="https://tasty-windows-lick.loca.lt">
|
||||
7
symfony/templates/components/head/_meta.html.twig
Normal file
7
symfony/templates/components/head/_meta.html.twig
Normal file
@@ -0,0 +1,7 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="canonical" href="https://joeac.net{{ path(app.current_route, app.current_route_parameters) }}" />
|
||||
<title>{{ title }}</title>
|
||||
<meta name="title" content="{{ title }}" />
|
||||
<meta name="description" content="{{ description }}" />
|
||||
5
symfony/templates/components/head/_open_graph.html.twig
Normal file
5
symfony/templates/components/head/_open_graph.html.twig
Normal file
@@ -0,0 +1,5 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://joeac.net{{ path(app.current_route, app.current_route_parameters) }}" />
|
||||
<meta property="og:title" content="{{ title }}" />
|
||||
<meta property="og:description" content="{{ description }}" />
|
||||
<meta property="og:image" content="/images/headshot.webp" />
|
||||
9
symfony/templates/components/head/_stylesheets.html.twig
Normal file
9
symfony/templates/components/head/_stylesheets.html.twig
Normal file
@@ -0,0 +1,9 @@
|
||||
<link rel="stylesheet" href="/css/reset.css" />
|
||||
<link rel="stylesheet" href="/css/base.css" />
|
||||
<link rel="stylesheet" href="/css/hcard.css" />
|
||||
{% if isFeed|default(false) %}
|
||||
<link rel="stylesheet" href="/css/feed.css" />
|
||||
{% endif %}
|
||||
{% if isFeedEntry|default(false) %}
|
||||
<link rel="stylesheet" href="/css/feed-entry.css" />
|
||||
{% endif %}
|
||||
5
symfony/templates/components/head/_twitter.html.twig
Normal file
5
symfony/templates/components/head/_twitter.html.twig
Normal file
@@ -0,0 +1,5 @@
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:url" content="https://joeac.net{{ path(app.current_route, app.current_route_parameters) }}" />
|
||||
<meta property="twitter:title" content="{{ title }}" />
|
||||
<meta property="twitter:description" content="{{ description }}" />
|
||||
<meta property="twitter:image" content="/images/headshot.webp" />
|
||||
Reference in New Issue
Block a user