ventry/templates/faq/index.html.twig

134 lines
7.1 KiB
Twig
Raw Normal View History

2023-11-03 20:17:49 +00:00
{% extends 'base.html.twig' %}
{% block title %}FAQ | ventry.host{% endblock %}
{% block styles %}
<style>
.feature {
width: 100%;
max-width: 1000px;
flex-grow: 1;
background-color: #15181D;
border-radius: 15px;
margin: 15px 32px 15px 32px;
padding: 15px 15px;
}
details summary {
cursor: pointer;
}
details summary > * {
display: inline;
}
@media (min-width: 641px) {
.hero-copy {
padding-right: 0 !important;
min-width: 552px;
width: max-content;
}
}
</style>
{% endblock %}
{% block body %}
{% include 'partials/__header.html.twig' %}
<main>
<section class="hero">
<div class="container">
<div class="hero-inner" style="justify-content: center;">
<div class="hero-copy">
<h1 class="hero-title mt-0">Frequently asked Questions</h1>
<p class="hero-paragraph">Here you will find answers to the most frequently asked questions.</p>
</div>
</div>
</div>
</section>
<section class="features section">
<div class="features-inner section-inner">
<div class="features-wrap">
<div class="feature text-left is-revealing">
<details class="feature-title">
<summary>
<h4 style="margin-top:0;margin-bottom:0;" class="feature-title">What is
ventry.host?</h4>
</summary>
<div class="faq-item">
Ventry.host is the most reliable and most convenient free File Hosting service that
you can find out there.<br><br>In addition to a variety of enhanced features, such
as themes for your File Pages, custom CSS, and even faster upload speeds than ever
before, it comes with a range of improvements as well.<br><br>In terms of its
customization capabilities, it allows you to create a custom experience that suits
your needs exactly, without constraints.<br><br>Our website design has been
completely revamped, not to mention the code behind the upload of your files has
also been revamped in order to ensure a smooth upload.<br><br>Truly the Bugatti of
the File-Hosts.
</div>
</details>
</div>
<div class="feature text-left is-revealing">
<details class="feature-title">
<summary>
<h4 style="margin-top:0;margin-bottom:0;" class="feature-title">What do I use this
for?</h4>
</summary>
<div class="faq-item">
If you have a lot of files you upload to your computer, or if you take a lot of
screenshots on your computer, then an online hosting service can be very useful for
you.<br><br>The file host allows you to manage these files in an easy and convenient
way.<br><br>You can share your files without any effort at all, and that makes it
very comfortable for the user.
</div>
</details>
</div>
<div class="feature text-left is-revealing">
<details class="feature-title">
<summary>
<h4 style="margin-top:0;margin-bottom:0;">How do I set up ventry.host?</h4>
</summary>
<div class="faq-item">
<span style="font-weight:bold;font-size:1.1em;color:lightgray;">Downloading ShareX</span><br>
For any File uploader, it is required for you to download a program called "ShareX".
This is totally virus-free and will NOT harm your computer. To download it, click <a
href="https://github.com/ShareX/ShareX/releases/download/v15.0.0/ShareX-15.0.0-setup.exe">here</a>
<br><br>
<span style="font-weight:bold;font-size:1.1em;color:lightgray;">Creating your Account</span><br>
The first thing you do, after you have downloaded ShareX is to create your account.
To do this click <a href="../">here</a>. Enter your username and your password.
Repeat your password to make sure you entered the right one.
<br><br>
<span style="font-weight:bold;font-size:1.1em;color:lightgray;">Updating/Setting your Settings</span>
<br>Then head to the "Settings"-Tab or click <a
href="">here</a>. From there on you will be able to
customize your Discord-Embed, your File Page Themes and more.
<br><br>
<span style="font-weight:bold;font-size:1.1em;color:lightgray;">Downloading your ShareX Config</span>
<br>Once you finish doing that, you can Press the "Download Config" button or click
<a href="{{ path('app_config') }}">here</a>. Now open the file with ShareX and
press on "Yes". Now you will be able to upload your Files to ventry.host!
</div>
</details>
</div>
<div class="feature text-left is-revealing">
<details class="feature-title">
<summary>
<h4 style="margin-top:0;margin-bottom:0;" class="feature-title">What if my question
wasn't listed?</h4>
</summary>
<div class="faq-item">
<div>
You may join our Discord server and ask for assistance at any moment! We are a
welcoming community that will help you find answers to your questions. You may
join our server by clicking <a href="">here</a>.
</div>
</div>
</details>
</div>
</div>
</div>
</section>
</main>
{% endblock %}