commit 075ceabe6da0e6a852c3e303e1126868278c3695 Author: Dessalines Date: Sun Sep 27 23:19:11 2020 -0500 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48cf0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..80ec8ce --- /dev/null +++ b/config.toml @@ -0,0 +1,15 @@ +# The URL the site will be built for +base_url = "https://join.lemmy.ml" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = false + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = false + +[extra] +# Put all your custom variables here diff --git a/content/apps/index.md b/content/apps/index.md new file mode 100644 index 0000000..68dc54a --- /dev/null +++ b/content/apps/index.md @@ -0,0 +1,5 @@ ++++ +template = "page.html" ++++ + +# Sweet hoodie ideas and apps diff --git a/content/join/index.md b/content/join/index.md new file mode 100644 index 0000000..cdb1e87 --- /dev/null +++ b/content/join/index.md @@ -0,0 +1,6 @@ ++++ +template = "page.html" +title = "Join" ++++ + +# Join lemmy diff --git a/content/sponsors/index.md b/content/sponsors/index.md new file mode 100644 index 0000000..b54fa49 --- /dev/null +++ b/content/sponsors/index.md @@ -0,0 +1,5 @@ ++++ +template = "page.html" ++++ + +# Words from our sponsors diff --git a/serve.sh b/serve.sh new file mode 100755 index 0000000..15a6e4a --- /dev/null +++ b/serve.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +zola serve --interface 0.0.0.0 diff --git a/static/fonts/CaviarDreams.ttf b/static/fonts/CaviarDreams.ttf new file mode 100644 index 0000000..852f454 Binary files /dev/null and b/static/fonts/CaviarDreams.ttf differ diff --git a/static/images/lemmy.svg b/static/images/lemmy.svg new file mode 100644 index 0000000..8254596 --- /dev/null +++ b/static/images/lemmy.svg @@ -0,0 +1,118 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/styles.md b/styles.md new file mode 100644 index 0000000..6d4f83a --- /dev/null +++ b/styles.md @@ -0,0 +1,2 @@ +Logo font: [Caviar Dreams](https://www.font-generator.com/fonts/CaviarDreams/?size=70&color=000000&bg=none) +https://fontmeme.com/fonts/caviar-dreams-font/#previewtool diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..124b2c3 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,84 @@ + + + + + Join Lemmy + + + + + +
+ + {% block content %} {% endblock %} +
+ + + + + + + + + + + + + + + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..24fe15e --- /dev/null +++ b/templates/index.html @@ -0,0 +1,71 @@ +{% extends "base.html" %} +{% block content %} + +
+

Lemmy

+

A link aggregator for the fediverse.

+

Get Started

+ +
+ +
+

Subscribe to communities anywhere in the world

+

Lemmy is similar to sites like Reddit, Lobste.rs, Raddle, or Hacker News: you subscribe to communities you're interested in, post links and discussions, then vote, and comment on them. Lemmy isn't just a reddit alternative; its a network of interconnected communities ran by different people and organizations, all combining to create a single, personalized front page of interesting news, articles, and memes.

+ +

Create your own discussion platform

+

With Lemmy, you can easily host your own server, and all these servers are federated (think email), and connected to the same universe, called the Fediverse. For a link aggregator, this means that someone registered on one server can subscribe to communities elsewhere, and can have discussions with people on a completely different server.

+

+

+ +
+
+
+
+ +
+

Powerful Mod tools

+

Each Lemmy server can set its own moderation policy; appointing site-wide admins, and community moderators to keep out the trolls, and foster a healthy, non-toxic environment where all can feel comfortable contributing.

+
+
+
+
+
+ +
+

Some feature

+

A longer description of the feature hereA longer description of the feature hereA longer description of the feature here

+
+
+
+
+
+ +
+

Some feature

+

A longer description of the feature here

+
+
+
+ +
+
+ +
+
+

Some feature

+

A longer description of the feature here

+
+
+ +
+

Open source

+

Some sub heading text

+ Get Started +
+ +
+

Another headline

+

Some more sub description here

+
+ +{% endblock content %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..c8e9343 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,4 @@ +{% extends "base.html" %} +{% block content %} +

{{ page.content | safe }}

+{% endblock content %}