|
| 1 | +{% extends 'base.html.twig' %} |
| 2 | + |
| 3 | +{% set meta = { |
| 4 | + title: 'Support', |
| 5 | + description: 'Symfony UX support - Ask questions about Symfony UX and get answers: Slack channel, Github discussions...', |
| 6 | + canonical: url('app_support'), |
| 7 | +} %} |
| 8 | + |
| 9 | +{% block content %} |
| 10 | + |
| 11 | + <div class="hero"> |
| 12 | + <div class="container-fluid container-xxl px-4 pt-4 px-md-5"> |
| 13 | + <h1 class="text-center mt-5"><a href="{{ url('app_support') }}">Support</a></h1> |
| 14 | + <p class="text-center mt-2 mb-5">Ask questions about Symfony UX and find the answers you need.</p> |
| 15 | + </div> |
| 16 | + </div> |
| 17 | + |
| 18 | + <section style="--padding:0;"> |
| 19 | + <div class="container-fluid container px-4 pt-4 px-md-5" style="max-width: 1000px;"> |
| 20 | + <div style="display: grid; gap: 3rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"> |
| 21 | + |
| 22 | + <div class="SupportBox"> |
| 23 | + <div class="SupportBox_logo"> |
| 24 | + <twig:Icon name="github" /> |
| 25 | + </div> |
| 26 | + <div class="SupportBox_badge"> |
| 27 | + <span class="Badge Badge--new"> |
| 28 | + <twig:ux:icon name="bi:stars" style="width: 1.25em; display: block;" /> |
| 29 | + New! |
| 30 | + </span> |
| 31 | + </div> |
| 32 | + <div class="SupportBox_content"> |
| 33 | + <h2 class="SupportBox_title"> |
| 34 | + <a href="https://github.com/symfony/ux/discussions" class="SupportBox_link" rel="external me">Github Discussions</a> |
| 35 | + </h2> |
| 36 | + <p class="SupportBox_description"> |
| 37 | + Engage in our GitHub Discussions to find answers and ask the community for help. |
| 38 | + </p> |
| 39 | + </div> |
| 40 | + </div> |
| 41 | + |
| 42 | + <div class="SupportBox"> |
| 43 | + <div class="SupportBox_logo"> |
| 44 | + <twig:ux:icon name="logos:slack-icon" /> |
| 45 | + </div> |
| 46 | + <div class="SupportBox_content"> |
| 47 | + <h2 class="SupportBox_title"> |
| 48 | + <a href="https://symfony.com/slack" class="SupportBox_link" rel="external noopener">Symfony Slack</a> |
| 49 | + </h2> |
| 50 | + <p class="SupportBox_description"> |
| 51 | + Join the Symfony Slack <code>#UX</code> channel to seek help or offer your expertise. |
| 52 | + </p> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + |
| 56 | + <div class="SupportBox"> |
| 57 | + <div class="SupportBox_logo"> |
| 58 | + <twig:ux:icon name="x-twitter" /> |
| 59 | + </div> |
| 60 | + <div class="SupportBox_content"> |
| 61 | + <h2 class="SupportBox_title"> |
| 62 | + <a href="https://x.com/SymfonyUX" class="SupportBox_link" rel="external me"><s>Twitter</s> X</a> |
| 63 | + </h2> |
| 64 | + <p class="SupportBox_description"> |
| 65 | + Follow the conversation on X for the latest tips and updates about <code>#SymfonyUX</code>. |
| 66 | + </p> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + |
| 70 | + <div class="SupportBox"> |
| 71 | + <div class="SupportBox_logo"> |
| 72 | + <twig:ux:icon name="symfony" /> |
| 73 | + </div> |
| 74 | + <div class="SupportBox_content"> |
| 75 | + <h2 class="SupportBox_title"> |
| 76 | + <a href="https://symfony.com/bundles#symfony-ux-bundles" class="SupportBox_link" rel="external noopener">Symfony Docs</a> |
| 77 | + </h2> |
| 78 | + <p class="SupportBox_description"> |
| 79 | + Explore the official Symfony docs on <code>UX bundles</code> and components. |
| 80 | + </p> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + |
| 84 | + {% if false %} |
| 85 | + <div class="SupportBox"> |
| 86 | + <div class="SupportBox_logo"> |
| 87 | + <twig:ux:icon name="logos:stackoverflow-icon" /> |
| 88 | + </div> |
| 89 | + <div class="SupportBox_content"> |
| 90 | + <h2 class="SupportBox_title"> |
| 91 | + <a href="https://stackoverflow.com/questions/tagged/symfonyux" class="SupportBox_link">Stack Overflow</a> |
| 92 | + </h2> |
| 93 | + <p class="SupportBox_description">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<code>#ux</code> Nullam auctor, nunc nec</p> |
| 94 | + </div> |
| 95 | + </div> |
| 96 | + {% endif %} |
| 97 | + |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + </section> |
| 101 | + |
| 102 | +{% endblock %} |
| 103 | + |
| 104 | +{% block aside %} |
| 105 | + {{ include('_aside.html.twig') }} |
| 106 | +{% endblock %} |
0 commit comments