Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/App/Controller/FormAction.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<fieldset>
<h3>Enter your information 🖋</h3>

{{ form(form, {'attr': {'novalidate': 'novalidate'}}) }}
{{ form(form, {attr: {novalidate: 'novalidate'}}) }}
</fieldset>
</article>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion templates/App/Controller/HomeAction.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
<h2>Built with MicroSymfony 🛠️️</h2>
#}

{% endblock %}
{% endblock %}
2 changes: 1 addition & 1 deletion templates/App/Controller/StimulusAction.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<h2>Demo: ajax call to API endpoint</h2>
</header>

<p {{ stimulus_controller('api', {url: path(ctrl_fqcn('SlugifyAction'))} )}}>
<p {{ stimulus_controller('api', {url: path(ctrl_fqcn('SlugifyAction'))}) }}>
<label for="title">
Enter a blog post title below:
<input type="text" required name="title" id="title"
Expand Down
2 changes: 1 addition & 1 deletion templates/_form.html.twig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{{ form(form, {'attr': {'novalidate': 'novalidate'}}) }}
{{ form(form, {attr: {novalidate: 'novalidate'}}) }}
2 changes: 1 addition & 1 deletion templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

<div class="grid">
<div>
<span class="versions">{{ brand|raw }} v{{ sf_version }}{# version #} ({{ 'frankenphp' in php_sapi ? php_sapi : 'PHP '~php_sapi }} {{ php_version }})</span>
<span class="versions">{{ brand|raw }} v{{ sf_version }}{# version #} ({{ 'frankenphp' in php_sapi ? php_sapi : 'PHP ' ~ php_sapi }} {{ php_version }})</span>

<small>
A Symfony minimalist application template by <a href="https://www.strangebuzz.com" target="_blank">COil/Strangebuzz 🐝</a>
Expand Down