No description
Find a file
Minecon724 c57ae37666
All checks were successful
/ build (push) Successful in 1m3s
Page templates
Closes #8

Signed-off-by: Minecon724 <git@m724.eu>
2025-03-12 19:26:18 +01:00
.forgejo/workflows ci: Add artifact README 2025-02-10 17:22:44 +01:00
.idea Pages 2025-03-11 17:59:27 +01:00
.mvn/wrapper feat: add Maven Wrapper and signing setup 2025-02-08 13:41:01 +01:00
example-blog@21d8a5de48 Add example blog repo 2025-03-11 13:19:27 +01:00
src/main Page templates 2025-03-12 19:26:18 +01:00
.gitignore Pages 2025-03-11 17:59:27 +01:00
LICENSE.md License 2025-03-06 17:54:50 +01:00
mvnw feat: add Maven Wrapper and signing setup 2025-02-08 13:41:01 +01:00
mvnw.cmd feat: add Maven Wrapper and signing setup 2025-02-08 13:41:01 +01:00
pom.xml Minifier 2025-03-08 13:26:36 +01:00
README.md Update README 2025-03-11 13:21:23 +01:00
testkeystore.jks feat: add Maven Wrapper and signing setup 2025-02-08 13:41:01 +01:00

blog-software(config, template, content) = blog website

Usage

  1. Download the program from here
    Mini or Full? Full contains dependencies, which use native libraries. Choose Full, if unsure.
  2. Run the program:
     java -jar blog-0.0.2-standalone-full.jar -s example_workdir
    

For tips on how to create your own project (workdir), see [Project format](#Project format) below.

API

There's no "API," but it's possible to integrate this into your Java project.

See Main.java for an example.
If you need a Maven dependency, see here

Project format

Here's an example blog you can take inspiration from.

Basically:

  • assets/ - contains static assets
  • articles/ - contains articles. Post format:
    • Header / metadata:
      • title A title - article title
      • summary This is a article with a title - article summary
      • live - is the article live (not draft), doesn't need an argument
      • Custom properties, which are Strings
    • - Empty line separates header from content
    • Post content in HTML. Generally not sanitized, but depends on template.
  • template/ - contains the template, see [Template format](#Template format) below
  • site-config.yml - the site configuration
    • name: my blog property - site name
    • baseUrl: https://example.com property - URL of the site. It must be a root URL - folders are currently not supported. This is used only for the RSS feed.
    • Custom properties, which can be anything as they are Objects

Template format

Pebble Templates is used

  • static/ - contains static assets
  • article_template.html - article template
  • index_template.html - index.html template