diff options
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/meta.html | 16 | ||||
-rw-r--r-- | _includes/signature.md | 22 | ||||
-rw-r--r-- | _includes/youtube.html | 3 |
3 files changed, 41 insertions, 0 deletions
diff --git a/_includes/meta.html b/_includes/meta.html new file mode 100644 index 0000000..9cf1901 --- /dev/null +++ b/_includes/meta.html @@ -0,0 +1,16 @@ + <meta http-equiv='X-UA-Compatible' content='IE=edge'> + <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'> + + {% if page.excerpt %} + <meta name="description" content="{{ page.excerpt| strip_html }}" /> + <meta property="og:description" content="{{ page.excerpt| strip_html }}" /> + {% else %} + <meta name="description" content="{{ site.meta }}"> + <meta property="og:description" content="{{ site.meta }}" /> + {% endif %} + <meta name="author" content="{{ site.name }}" /> + + {% if page.title %} + <meta property="og:title" content="{{ page.title }}" /> + <meta property="twitter:title" content="{{ page.title }}" /> + {% endif %} diff --git a/_includes/signature.md b/_includes/signature.md new file mode 100644 index 0000000..bcaf16a --- /dev/null +++ b/_includes/signature.md @@ -0,0 +1,22 @@ +``` ++---------------------------------------+ +| .-. .-. .-. | +| / \ / \ / \ | +| / \ / \ / \ / | +| \ / \ / \ / | +| "_" "_" "_" | +| | +| _ _ _ _ _ _ ___ ___ _ _ | +| | | | | | | \| | /_\ | _ \ / __| || | | +| | |_| |_| | .` |/ _ \| /_\__ \ __ | | +| |____\___/|_|\_/_/ \_\_|_(_)___/_||_| | +| | +| | +| Lunar RF Labs | +| https://lunar.sh | +| | +| RF Research Laboratories | +| Copyright (C) 2022-2024 | +| | ++---------------------------------------+ +``` diff --git a/_includes/youtube.html b/_includes/youtube.html new file mode 100644 index 0000000..b580b0c --- /dev/null +++ b/_includes/youtube.html @@ -0,0 +1,3 @@ +<div class="youtube"> + <iframe src="https://www.youtube.com/embed/{{ include.id }}" allowfullscreen></iframe> +</div> |