11 lines
446 B
HTML
11 lines
446 B
HTML
{% extends 'layouts/layout.html' %}
|
|
|
|
{% block page_head %}
|
|
<link rel="preload" as="style" href="{{ url_for('static', filename='dist/css/store_home.bundle.css') }}" onload="this.onload=null;this.rel='stylesheet'">
|
|
<noscript><link rel="stylesheet" href="{{ url_for('static', filename='dist/css/store_home.bundle.css') }}"></noscript>
|
|
{% endblock %}
|
|
|
|
|
|
{% block page_body %}
|
|
{% include 'components/store/_home_body.html' %}
|
|
{% endblock %} |