No change

This commit is contained in:
Flatlogic Bot 2025-11-18 04:37:56 +00:00
parent e79b759baa
commit e2ba34438a
8 changed files with 125 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 297 KiB

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -59,6 +59,7 @@ INSTALLED_APPS = [
]
MIDDLEWARE = [
'django.middleware.gzip.GZipMiddleware',
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
@ -149,6 +150,8 @@ STATICFILES_DIRS = [
BASE_DIR / 'assets',
]
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
# Email
EMAIL_BACKEND = os.getenv(
"EMAIL_BACKEND",

View File

@ -0,0 +1,58 @@
{% extends "base.html" %}
{% block title %}FAQ{% endblock %}
{% block content %}
<div class="container">
<h1>Frequently Asked Questions</h1>
<div class="accordion" id="faqAccordion">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What is a YouTube tag generator?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#faqAccordion">
<div class="accordion-body">
A YouTube tag generator is a tool that helps you find the most relevant keywords and tags for your videos. By using the right tags, you can improve your video's visibility in YouTube's search results and recommendations, leading to more views and subscribers.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
How do I generate tags for my YouTube videos?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Simply enter a keyword or topic related to your video in the search box, and our AI-powered tool will generate a list of relevant tags for you to use. You can then copy and paste these tags into the tag section of your YouTube video upload.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Are the generated tags SEO-friendly?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Yes, our tool is designed to generate SEO-optimized tags that can help your videos rank higher in search results. We analyze trending keywords and user search behavior to provide you with the most effective tags for your content.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Is this tool free to use?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Yes, our YouTube tag generator is completely free to use. We believe that everyone should have access to the tools they need to succeed on YouTube.
</div>
</div>
</div>
</div>
</div>
{% endblock %}

View File

@ -0,0 +1,50 @@
{% extends "base.html" %}
{% block title %}Testimonials{% endblock %}
{% block content %}
<div class="container">
<h1>Testimonials</h1>
<div id="testimonial-container">
<div class="testimonial show">
<p>"This is the best SEO tool I've ever used! It's helped me rank my videos higher and get more views."</p>
<p class="author">- John Doe</p>
</div>
<div class="testimonial">
<p>"I was struggling to grow my YouTube channel, but this tag generator has been a game-changer. I'm finally getting the traffic I deserve."</p>
<p class="author">- Jane Smith</p>
</div>
<div class="testimonial">
<p>"I love how easy it is to use this tool. It's saved me so much time and effort."</p>
<p class="author">- David Johnson</p>
</div>
<div class="testimonial">
<p>"I was skeptical at first, but this tool really works. I've seen a significant increase in my video's performance since I started using it."</p>
<p class="author">- Sarah Williams</p>
</div>
</div>
</div>
<style>
.testimonial {
display: none;
}
.testimonial.show {
display: block;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const testimonials = document.querySelectorAll('.testimonial');
let currentTestimonial = 0;
function showNextTestimonial() {
testimonials[currentTestimonial].classList.remove('show');
currentTestimonial = (currentTestimonial + 1) % testimonials.length;
testimonials[currentTestimonial].classList.add('show');
}
setInterval(showNextTestimonial, 10000);
});
</script>
{% endblock %}

View File

@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}Website SEO{% endblock %}
{% block content %}
<div class="container">
<h1>Website SEO</h1>
</div>
{% endblock %}

View File

@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}YouTube SEO{% endblock %}
{% block content %}
<div class="container">
<h1>YouTube SEO</h1>
</div>
{% endblock %}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 297 KiB

After

Width:  |  Height:  |  Size: 119 KiB