Signed-off-by: Minecon724 <git@m724.eu>
This commit is contained in:
parent
b6fb184b05
commit
ac3493bfa8
2 changed files with 23 additions and 2 deletions
|
@ -205,6 +205,9 @@ public class BlogBuilder {
|
|||
} catch (FileAlreadyExistsException ignored) { }
|
||||
|
||||
Files.writeString(outFile, render);
|
||||
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,10 +61,28 @@ public class TemplateExtension extends AbstractExtension {
|
|||
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;
|
||||
}
|
||||
}
|
||||
// TODO make url_for that supports relative and absolute paths
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue