diff options
Diffstat (limited to 'lume/src')
| -rw-r--r-- | lume/src/_components/ads.njk | 2 | ||||
| -rw-r--r-- | lume/src/_includes/bare.njk | 3 | ||||
| -rw-r--r-- | lume/src/_includes/blog.njk | 2 | ||||
| -rw-r--r-- | lume/src/_includes/talk.njk | 2 | ||||
| -rw-r--r-- | lume/src/_includes/vod.njk | 2 |
5 files changed, 10 insertions, 1 deletions
diff --git a/lume/src/_components/ads.njk b/lume/src/_components/ads.njk new file mode 100644 index 0000000..f11365d --- /dev/null +++ b/lume/src/_components/ads.njk @@ -0,0 +1,2 @@ +<script async src="https://media.ethicalads.io/media/client/ethicalads.min.js"></script> +<div data-ea-publisher="christinewebsite" data-ea-type="text" data-ea-style="fixedfooter"></div>
\ No newline at end of file diff --git a/lume/src/_includes/bare.njk b/lume/src/_includes/bare.njk index 362e231..ffdd885 100644 --- a/lume/src/_includes/bare.njk +++ b/lume/src/_includes/bare.njk @@ -89,6 +89,7 @@ la budza pu cusku lu <meta property="twitter:image" content="https://cdn.xeiaso.net/file/christine-static/hero/{{ hero.file }}.jpg"/> {% endif %} </head> - + + {{ comp.ads() | safe }} {{ content | safe }} </html>
\ No newline at end of file diff --git a/lume/src/_includes/blog.njk b/lume/src/_includes/blog.njk index c0a1cb3..5edad30 100644 --- a/lume/src/_includes/blog.njk +++ b/lume/src/_includes/blog.njk @@ -2,6 +2,8 @@ layout: base.njk --- +{{ comp.ads() | safe }} + <article class="prose dark:prose-invert max-w-none"> <h1>{{title}}</h1> <p class="text-sm text-fg-3 dark:text-fgDark-3"> diff --git a/lume/src/_includes/talk.njk b/lume/src/_includes/talk.njk index 016bc2e..6f5c413 100644 --- a/lume/src/_includes/talk.njk +++ b/lume/src/_includes/talk.njk @@ -2,6 +2,8 @@ layout: base.njk --- +{{ comp.ads() | safe }} + <article class="prose dark:prose-invert max-w-none"> <h1>{{title}}</h1> <p class="text-sm text-fg-3 dark:text-fgDark-3"> diff --git a/lume/src/_includes/vod.njk b/lume/src/_includes/vod.njk index b3e9d31..0f2596d 100644 --- a/lume/src/_includes/vod.njk +++ b/lume/src/_includes/vod.njk @@ -2,6 +2,8 @@ layout: base.njk --- +{{ comp.ads() | safe }} + <article> <h1 class="text-3xl">{{title}}</h1> <p class="mt-2 text-sm text-fg-3 dark:text-fgDark-3"> |
