Go to file
Sam Therapy 6e890c6b97
Some checks failed
continuous-integration/drone Build is failing
Overhaul my website by just using a template
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2024-03-24 17:04:03 +01:00
_site Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
src Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
.drone.yml Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
.gitignore Migrate to lume 2022-10-11 20:41:01 +02:00
_cms.ts Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
_config.ts Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
deno.json Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
deno.lock Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
LICENSE Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
mod.ts Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
plugins.ts Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
README.md Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00
serve.ts Overhaul my website by just using a template 2024-03-24 17:04:03 +01:00

Simple Me

Lume theme to create a Linktree alternative.

Install as a remote theme

The fastest and easiest way to use this theme is by importing it as a remote module. It allows to create a blog in seconds and update it at any time just by changing the version number in the import URL. Just add the following code to your _config.ts file:

import lume from "lume/mod.ts";
import me from "https://deno.land/x/lume_theme_simple_me/mod.ts";

const site = lume();

site.use(me());

export default site;

Use it as a base template

To use this theme as a base template for a more customized site, clone this repo and edit the _config.ts file. The source files are in the src folder.