24 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
<!-- Twitter Cards -->
 | 
						|
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
 | 
						|
{% if page.excerpt %}<meta name="twitter:description" content="{{ page.excerpt | strip_html }}">{% endif %}
 | 
						|
{% if site.owner.twitter %}<meta name="twitter:site" content="@{{ site.owner.twitter }}">{% endif %}
 | 
						|
{% if author.twitter %}<meta name="twitter:creator" content="@{{ author.twitter }}">{% endif %}
 | 
						|
{% if page.image.feature %}
 | 
						|
<meta name="twitter:card" content="summary_large_image">
 | 
						|
<meta name="twitter:image" content="{{ site.github.url }}/images/{{ page.image.feature }}">
 | 
						|
{% else %}
 | 
						|
<meta name="twitter:card" content="summary">
 | 
						|
<meta name="twitter:image" content="{% if page.image.thumb %}{{ site.github.url }}/images/{{ page.image.thumb }}{% else %}{{ site.github.url }}/images/default-thumb.png{% endif %}">
 | 
						|
{% endif %}
 | 
						|
<!-- Open Graph -->
 | 
						|
<meta property="og:locale" content="{{ site.locale }}">
 | 
						|
<meta property="og:type" content="article">
 | 
						|
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
 | 
						|
{% if page.excerpt %}<meta property="og:description" content="{{ page.excerpt | strip_html }}">{% endif %}
 | 
						|
<meta property="og:url" content="{{ page.url | replace:'index.html','' | prepend: site.github.url }}">
 | 
						|
<meta property="og:site_name" content="{{ site.title }}">
 | 
						|
{% if page.image.feature %}
 | 
						|
<meta property="og:image" content="{{ site.github.url }}/images/{{ page.image.feature }}">
 | 
						|
{% else %}
 | 
						|
<meta property="og:image" content="{% if page.image.thumb %}{{ site.github.url }}/images/{{ page.image.thumb }}{% else %}{{ site.github.url }}/images/default-thumb.png{% endif %}">
 | 
						|
{% endif %} |