askor

Results 6 comments of askor

This is also true for mobile. In vertical rotation there is barely any space for the code. ![01F8B1DC-33A6-4F4E-9C72-FB14297BCBBB](https://user-images.githubusercontent.com/11080290/174061722-80154946-0548-4d61-934a-77168aab2c72.png) Somewhat related is horizontal space when using a mobile device in horizontal...

Is this the reason this template is still on Bevy 0.11? Should be bumped to 0.12 if not

@kaplanelad I have a similar issue as the above (but im not sure it's the exact same). [This blog post about HTMX](https://loco.rs/casts/007-htmx/) has a video setting up a simple example....

I solved my own issue by removing `| escape` from the values that are int and bool. ``` {% for item in items %} {{item.name | escape }} {{item.star }}...

Edit: see post below This would be a big improvement for me. Not sure how else to create a frontpage on the html/htmx stack, with different state depending on the...

I found a solution for this, as it's already solved in Axum by [handling extractor rejections with Result](https://docs.rs/axum/latest/axum/extract/index.html#handling-extractor-rejections). So you can wrap JWT in Result like: pub async fn render_home(jwt:...