Skip to main content

max / makenotwork

1.6 KB · 38 lines History Blame Raw
1 {% include "wizards/partials/step_nav.html" %}
2
3 <div class="wizard-step">
4 <h2 class="subtitle-h2">First Content</h2>
5 <p class="step-description">Optionally create your first item or blog post. You can always do this later from the project dashboard.</p>
6
7 <form hx-post="/dashboard/new-project/{{ slug }}/step/first-content"
8 hx-target="#wizard-step" hx-swap="innerHTML"
9 hx-push-url="/dashboard/new-project/{{ slug }}/step/preview">
10
11 {% if item_count > 0 %}
12 <div class="info-box mb-5">
13 You already have {{ item_count }} item{% if item_count != 1 %}s{% endif %} in this project.
14 </div>
15 {% endif %}
16
17 <div class="content-choice-cards">
18 <a href="/dashboard/project/{{ slug }}/new-item" class="content-choice-card">
19 <h3>Create an Item</h3>
20 <p>Upload audio, write text, or add a digital download using the item wizard.</p>
21 </a>
22
23 <div class="content-choice-card is-disabled">
24 <h3>Write a Blog Post</h3>
25 <p>Write a blog post from the project dashboard after setup.</p>
26 </div>
27 </div>
28
29 <div class="wizard-actions">
30 <button type="button" class="btn-secondary"
31 hx-get="/dashboard/new-project/{{ slug }}/step/monetization"
32 hx-target="#wizard-step" hx-swap="innerHTML"
33 hx-push-url="/dashboard/new-project/{{ slug }}/step/monetization">Back</button>
34 <button type="submit" class="btn-primary">Skip to Preview</button>
35 </div>
36 </form>
37 </div>
38