mirror of
				https://github.com/TrentSPalmer/attentionspanhistory.git
				synced 2025-10-31 08:41:41 -07:00 
			
		
		
		
	fix og and twitter cards
This commit is contained in:
		| @@ -1,33 +1,56 @@ | ||||
| <meta property="og:site_name" content="Atention Span History" /> | ||||
|  | ||||
| {% if article is defined %} | ||||
|  | ||||
|   <meta property="og:type" content="article" /> | ||||
|   <meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" /> | ||||
|   <meta property="og:title" content="{{ article.title | replace("\"", """) }}" /> | ||||
|   <meta property="og:type" content="article" /> | ||||
|   <meta property="og:description" content="{{ article.content | striptags | replace("\"", """) | truncate(196, False, '...') }}" /> | ||||
|   <meta property="twitter:title" content="{{ article.title | replace("\"", """) }}" /> | ||||
|   <meta property="twitter:card" content="summary" /> | ||||
|   <meta property="twitter:description" content="{{ article.content | striptags | replace("\"", """) | truncate(196, False, '...') }}" /> | ||||
|   <meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" /> | ||||
|   <meta property="og:image" content="{{ SITEURL }}/images/trent.jpg" /> | ||||
|   {% if article.date %} | ||||
|   <meta property="article:published_time" content="{{ article.date.isoformat() }}" /> | ||||
|   {% if article.modified %} | ||||
|   <meta property="article:modified_time" content="{{ article.modified.isoformat() }}" /> | ||||
|   {% else %} | ||||
|   <meta property="article:modified_time" content="{{ article.date.isoformat() }}" /> | ||||
|   {% endif %} | ||||
|   {% endif %} | ||||
|  | ||||
|   <meta name="twitter:card" content="summary" /> | ||||
|   <meta name="twitter:title" content="{{ article.title | replace("\"", """) }}" /> | ||||
|   <meta name="twitter:description" content="{{ article.content | striptags | replace("\"", """) | truncate(196, False, '...') }}" /> | ||||
|   <meta name="twitter:url" content="{{ SITEURL }}/{{ article.url }}" /> | ||||
|   <meta name="twitter:label1" content="Written by" /> | ||||
|   <meta name="twitter:data1" content="Trent Palmer" /> | ||||
|  | ||||
| {% elif page is defined %} | ||||
|  | ||||
|   <meta property="og:type" content="website" /> | ||||
|   <meta property="og:url" content="{{ SITEURL }}/{{ page.url }}" /> | ||||
|   <meta property="og:title" content="{{ SITENAME }} - {{ page.title | replace("\"", """) }}" /> | ||||
|   <meta property="og:type" content="website" /> | ||||
|   <meta property="og:description" content="{{ page.content | striptags | replace("\"", """) | truncate(196, False, '...') }}" /> | ||||
|   <meta property="twitter:title" content="{{ SITENAME }} - {{ page.title | replace("\"", """) }}" /> | ||||
|   <meta property="twitter:card" content="summary" /> | ||||
|   <meta property="twitter:description" content="{{ page.content | striptags | replace("\"", """) | truncate(196, False, '...') }}" /> | ||||
|   <meta property="og:url" content="{{ SITEURL }}/{{ page.url }}" /> | ||||
|   <meta property="og:image" content="{{ SITEURL }}/images/trent.jpg" /> | ||||
|  | ||||
|   <meta name="twitter:card" content="summary" /> | ||||
|   <meta name="twitter:title" content="{{ SITENAME }} - {{ page.title | replace("\"", """) }}" /> | ||||
|   <meta name="twitter:description" content="{{ page.content | striptags | replace("\"", """) | truncate(196, False, '...') }}" /> | ||||
|   <meta name="twitter:url" content="{{ SITEURL }}/{{ page.url }}" /> | ||||
|  | ||||
| {% else %} | ||||
|  | ||||
|   <meta property="og:type" content="website" /> | ||||
|   <meta property="og:url" content="{{ SITEURL }}/{{ output_file }}" /> | ||||
|   <meta property="og:title" content="{{ SITENAME }}" /> | ||||
|   <meta property="og:type" content="website" /> | ||||
|   <meta property="og:description" content="A page on Attention Span History" /> | ||||
|   <meta property="twitter:title" content="{{ SITENAME }}" /> | ||||
|   <meta property="twitter:card" content="summary" /> | ||||
|   <meta property="twitter:description" content="A page on Attention Span History" /> | ||||
|   <meta property="og:url" content="{{ SITEURL }}/{{ output_file }}" /> | ||||
|   <meta property="og:image" content="{{ SITEURL }}/images/trent.jpg" /> | ||||
|  | ||||
|   <meta name="twitter:card" content="summary" /> | ||||
|   <meta name="twitter:title" content="{{ SITENAME }}" /> | ||||
|   <meta name="twitter:description" content="A page on Attention Span History" /> | ||||
|   <meta name="twitter:url" content="{{ SITEURL }}/{{ output_file }}" /> | ||||
|  | ||||
| {% endif %} | ||||
|  | ||||
| <meta property="og:image" content="{{ SITEURL }}/images/trent.jpg" /> | ||||
| <meta name="twitter:site" content="@BoringTrent" /> | ||||
| <meta name="twitter:creator" content="@BoringTrent" /> | ||||
| <meta name="twitter:image" content="{{ SITEURL }}/images/trent.jpg" /> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user