Jay Miller

Results 20 comments of Jay Miller

You can create a static web app from an azure function. I haven't tried this to see the difference but to my knowledge there are some javascript frameworks that can...

@Mahhheshh is correct. This is the components of `_base.html` ``` {% block header %}{% endblock %} {% block page_title %}{% endblock %} {% block content %}{% endblock %} {% block...

@all-contributors please add @john0isaac for Maintenance UserTesting @Mahhheshh maintenance

@all-contributors please add @Mahhheshh for maintenance

Looking at the base template from - https://github.com/render-engine/cookiecutter-render-engine-site/blob/main/%7B%7Bcookiecutter.project_slug%7D%7D/templates/_base.html It seems like it is setup as expected with references to header and footer.

You're correct. Interesting enough I think there are some things that we cxan do if we plan this out a bit. I'm sure we can plan this out and get...

Can you provide an example of the fix that you're suggesting. If I understand correctly the issue is that the static path isn't pointing to an absolute path so you...

Not sure why I acted like site doesn't have a way to do this already Better Example: ## Example ```python # site.py # in the Site class def collection(self, Collection:...

More info: so if the list of templates are { "test.html": "Test1", "test.html": "Test2", "test.html": "Test3", } The result when calling test.html will be "Test1" If someone is making a...