@noiob oh, yeah! are there any in particular you like..?
@noiob oh yeah, they do seem to largely have similar ideas!
it's hard to say which i prefer the most. maybe liquid? (that's the thing jekyll uses, and you can pipe output between functions)
{{ user.name | capitalize | prepend: "Hello " }}
most of the stuff i've used recently is jsp with jstl, though jstl just tries to replace the code parts of the templates into tags that are interpreted serverside
<c:forEach var="thing" items="${bean.things}">
${thing.field}
</c:forEach>
@noiob oh yeah, manually building html without templating is a nightmare and a half =w=
@thingywott that's how I learnt to do things, reading programming books for kids from the city library
my original code had everything in one file and people looked at it and went "ah yes, the oldschool way :D"
@noiob hee. that is, indeed the oldschool way
i used to do that too
@thingywott it works!
@thingywott and honestly for a small project it's okay… it wasn't too hard to move to the "proper" way afterwards anyways
@thingywott but I'm super happy about how much I'm learning
@thingywott I didn't do anything too complex, I just love how readable and nice it makes the templates as opposed to piecing together the html manually in php