The bmannconsulting.com website
1<head> 2 <meta charset="UTF-8"> 3 <link rel="canonical" href="{{ site.url }}{{ page.url }}" /> 4 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 5 <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.title }}{% endif %}"> 6 <meta property="og:site_name" content="{{ site.title }}"> 7 <link rel="stylesheet" href="{{ '/styles.css' | relative_url }}"> 8 <link rel="alternate" type="application/atom+xml" title="Blog Feed for bmannconsulting.com" href="{{ site.url }}/blog.xml" /> 9 <link rel="alternate" type="application/atom+xml" title="Journal Feed for bmannconsulting.com" href="{{ site.url }}/journal.xml" /> 10 11 {% comment %}<!-- Littlefoot footnotes https://github.com/goblindegook/littlefoot -->{% endcomment %} 12 <link rel="stylesheet" href="https://unpkg.com/littlefoot/dist/littlefoot.css" /> 13 14 {% if page.excerpt %} 15 <meta property="og:description" content="{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}"/> 16 {% else %} 17 <meta property="og:description" content="{{ site.title | strip_html | strip_newlines | truncate: 160 }}"/> 18 {% endif %} 19 20 {% if page.title %} 21 <meta property="og:title" content="{{ page.title }}"> 22 <meta property="og:type" content="article"> 23 {% else %} 24 <meta property="og:title" content="{{ site.title }}"> 25 <meta property="og:type" content="website"> 26 {% endif %} 27 28 {% if page.published %} 29 <link rel="canonical" href="{{ page.link }}" /> 30 <meta property="article:published_time" content="{{ page.published | date_to_xmlschema }}"> 31 <meta property="article:author" content="{{ page.author }}"> 32 {% elsif page.date %} 33 <meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}"> 34 <meta property="article:author" content="{{ site.url }}/"> 35 {% endif %} 36 37 <meta property="og:url" content="{{ site.url }}{{ page.url }}" /> 38 39 {% if page.image %} 40 <meta property="og:image" content="{{ site.url }}{{ page.image }}"> 41 {% else %} 42 <meta property="og:image" content="{{ site.url }}/assets/bmann_hair_orange_256x256.png"> 43 {% endif %} 44 45{% if page.frame %} 46 <!-- Open Frames Custom --> 47 <meta property="fc:frame" content="vNext"> 48 {% if page.frame.image %} 49 <meta property="fc:frame:image" content="{{ site.url }}{{ page.frame.image }}"> 50 <meta property="fc:frame:image:aspect_ratio" content="{{ page.frame.image-aspect-ratio }}"> 51 {% endif %} 52 {% if page.frame.button1 %} 53 <meta property="fc:frame:button:1" content="{{ page.frame.button1.label }}"> 54 <meta property="fc:frame:button:1:action" content="{{ page.frame.button1.action }}"> 55 <meta property="fc:frame:button:1:target" content="{{ page.frame.button1.target }}"> 56 {% endif %} 57 {% if page.frame.button2 %} 58 <meta property="fc:frame:button:2" content="{{ page.frame.button2.label }}"> 59 <meta property="fc:frame:button:2:action" content="{{ page.frame.button2.action }}"> 60 <meta property="fc:frame:button:2:target" content="{{ page.frame.button2.target }}"> 61 {% endif %} 62 {% if page.frame.button3 %} 63 <meta property="fc:frame:button:3" content="{{ page.frame.button3.label }}"> 64 <meta property="fc:frame:button:3:action" content="{{ page.frame.button3.action }}"> 65 <meta property="fc:frame:button:3:target" content="{{ page.frame.button3.target }}"> 66 {% endif %} 67{% else %} 68 <!-- Open Frames Default --> 69 {% if page.image %} 70 <meta property="fc:frame:image" content="{{ site.url }}{{ page.image }}"> 71 <meta property="fc:frame:image:aspect_ratio" content="1:1"> 72 {% else %} 73 <meta property="fc:frame:image" content="{{ site.url }}/assets/bmann_hair_orange_256x256.png"> 74 <meta property="fc:frame:image:aspect_ratio" content="1:1"> 75 {% endif %} 76 <meta property="fc:frame" content="vNext"> 77 {% if page.link %} 78 <meta property="fc:frame:button:1" content="🔗 Source"> 79 <meta property="fc:frame:button:1:action" content="link"> 80 <meta property="fc:frame:button:1:target" content="{{ page.link }}"> 81 {% elsif page.wikipedia %} 82 <meta property="fc:frame:button:1" content="📖 Wikipedia"> 83 <meta property="fc:frame:button:1:action" content="link"> 84 <meta property="fc:frame:button:1:target" content="{{ page.wikipedia }}"> 85 {% else %} 86 <meta property="fc:frame:button:1" content="🌱 Home"> 87 <meta property="fc:frame:button:1:action" content="link"> 88 <meta property="fc:frame:button:1:target" content="https://bmannconsulting.com"> 89 {% endif %} 90 <meta property="fc:frame:button:2" content="🔖 Explore"> 91 <meta property="fc:frame:button:2:action" content="link"> 92 <meta property="fc:frame:button:2:target" content="https://bmannconsulting.com/notes/"> 93 <meta property="fc:frame:button:3" content="💰 Drips"> 94 <meta property="fc:frame:button:3:action" content="link"> 95 <meta property="fc:frame:button:3:target" content="https://www.drips.network/app/bmann.eth"> 96{% endif %} 97 <title> 98 {% if page.id == "home" %} 99 {{ site.title }} 100 {% else %} 101 {{ page.title }} &mdash; {{ site.title }} 102 {% endif %} 103 </title> 104</head>