* gitignore: /dist/ * bskyweb: initial work-in-progress * bskyweb: import icons from bluesky-website * bskyweb: switch to pongo2 templates; iterate on views * bskyweb: example.env (and docs) * bskyweb: go fmt * bskyweb: remove plan file * bskyweb: README: tweak formatting * prettier: ignore /dist/, bskyweb templates --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			964 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			964 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block head_page_meta -%}
 | 
						|
<!-- TODO: "same as" indication with DID? -->
 | 
						|
{%- if profileView -%}
 | 
						|
	<meta property="og:type" content="article"/>
 | 
						|
	<meta name="twitter:card" content="summary"/>
 | 
						|
  {%- if profileView.DisplayName -%}
 | 
						|
	<meta property="og:title" content="{{ profileView.DisplayName }} / {{ profileView.Handle }}"/>
 | 
						|
	<meta name="twitter:title" content="{{ profileView.DisplayName }} / {{ profileView.Handle }}"/>
 | 
						|
  {%- else -%}
 | 
						|
	<meta property="og:title" content="{{ profileView.Handle }}"/>
 | 
						|
	<meta name="twitter:title" content="{{ profileView.Handle }}"/>
 | 
						|
  {%- endif -%}
 | 
						|
	<meta name="twitter:description" content="{{ profileView.Description }}"/>
 | 
						|
	{%- if profileView.Avatar -%}
 | 
						|
  <meta name="twitter:image" content="{{ profileView.Avatar }}"/>
 | 
						|
  {%- endif -%}
 | 
						|
{%- endif -%}
 | 
						|
{%- endblock %}
 | 
						|
 | 
						|
{% block noscript_extra -%}
 | 
						|
<p>{{ profileView.DisplayName }} / {{ profileView.Handle }}
 | 
						|
<p>{{ profileView.Description }}
 | 
						|
{%- endblock %}
 |