Implement hidden article
Some checks are pending
/ build (push) Waiting to run

Signed-off-by: Minecon724 <git@m724.eu>
This commit is contained in:
Minecon724 2025-03-10 18:11:23 +01:00
parent b6fb184b05
commit ac3493bfa8
Signed by untrusted user who does not match committer: Minecon724
GPG key ID: 3CCC4D267742C8E8
2 changed files with 23 additions and 2 deletions

View file

@ -205,7 +205,10 @@ public class BlogBuilder {
} catch (FileAlreadyExistsException ignored) { } } catch (FileAlreadyExistsException ignored) { }
Files.writeString(outFile, render); Files.writeString(outFile, render);
articles.add(article);
// TODO Is this the right way? To just ignore hidden? Right now it doesn't matter, but in the future?
if (!article.hidden())
articles.add(article);
} }
} }

View file

@ -61,10 +61,28 @@ public class TemplateExtension extends AbstractExtension {
path = CacheBuster.insertHashInPath(path, hash); path = CacheBuster.insertHashInPath(path, hash);
} }
return site.directory() + path;
}
},
"url_for", new Function() {
@Override
public List<String> getArgumentNames() {
return List.of("path");
}
@Override
public Object execute(Map<String, Object> args, PebbleTemplate self, EvaluationContext context, int lineNumber) {
var path = args.get("path").toString();
if (path.startsWith("/")) {
path = path.substring(1);
} else {
// TODO Should we apply special treatment? Relative path?
}
return site.directory() + path; return site.directory() + path;
} }
} }
// TODO make url_for that supports relative and absolute paths
); );
} }