diff options
| author | Xe Iaso <me@xeiaso.net> | 2023-10-11 08:37:26 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2023-10-11 08:37:26 -0400 |
| commit | 6f8d93b9d8d8f9168fa0dfb88d755793ff6e770c (patch) | |
| tree | c1b51ca641fe4fa16f7dca3fa6ca72a0b92eec12 | |
| parent | 49a10972906eb47e5add7267dc193e2556d93a36 (diff) | |
| download | xesite-6f8d93b9d8d8f9168fa0dfb88d755793ff6e770c.tar.xz xesite-6f8d93b9d8d8f9168fa0dfb88d755793ff6e770c.zip | |
lume: re-enable ads I guess
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -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"> |
