Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>{% block title %}NLP Ultimate Tutorial{% endblock %}</title> | |
| <!-- Bootstrap CSS --> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <!-- Custom CSS --> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='css/components.css') }}"> | |
| <!-- Font Awesome --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> | |
| <!-- Chart.js --> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
| {% block extra_head %}{% endblock %} | |
| </head> | |
| <body> | |
| <!-- Navigation --> | |
| <nav class="navbar navbar-expand-lg navbar-dark bg-primary"> | |
| <div class="container-fluid"> | |
| <a class="navbar-brand" href="{{ url_for('index') }}"> | |
| <i class="fas fa-brain"></i> NLP Ultimate Tutorial | |
| </a> | |
| <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mainNavbar" aria-controls="mainNavbar" aria-expanded="false" aria-label="Toggle navigation"> | |
| <span class="navbar-toggler-icon"></span> | |
| </button> | |
| <div class="collapse navbar-collapse" id="mainNavbar"> | |
| <ul class="navbar-nav me-auto mb-2 mb-lg-0"> | |
| <li class="nav-item dropdown"> | |
| <a class="nav-link dropdown-toggle" href="#" id="navTextProcessing" role="button" data-bs-toggle="dropdown" aria-expanded="false"> | |
| <i class="fas fa-edit"></i> Text Processing | |
| </a> | |
| <ul class="dropdown-menu" aria-labelledby="navTextProcessing"> | |
| <li><a class="dropdown-item" href="{{ url_for('preprocessing') }}">Preprocessing</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('tokenization') }}">Tokenization</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('pos_tagging') }}">POS Tagging</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('named_entity') }}">Named Entities</a></li> | |
| </ul> | |
| </li> | |
| <li class="nav-item dropdown"> | |
| <a class="nav-link dropdown-toggle" href="#" id="navAnalysis" role="button" data-bs-toggle="dropdown" aria-expanded="false"> | |
| <i class="fas fa-chart-line"></i> Analysis | |
| </a> | |
| <ul class="dropdown-menu" aria-labelledby="navAnalysis"> | |
| <li><a class="dropdown-item" href="{{ url_for('sentiment') }}">Sentiment</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('summarization') }}">Summarization</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('topic_analysis') }}">Topic Analysis</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('question_answering') }}">Question Answering</a></li> | |
| </ul> | |
| </li> | |
| <li class="nav-item dropdown"> | |
| <a class="nav-link dropdown-toggle" href="#" id="navAdvanced" role="button" data-bs-toggle="dropdown" aria-expanded="false"> | |
| <i class="fas fa-robot"></i> Advanced NLP | |
| </a> | |
| <ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navAdvanced"> | |
| <li><a class="dropdown-item" href="{{ url_for('text_generation') }}">Text Generation</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('translation') }}">Translation</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('classification') }}">Classification</a></li> | |
| <li><a class="dropdown-item" href="{{ url_for('vector_embeddings') }}">Embeddings</a></li> | |
| </ul> | |
| </li> | |
| </ul> | |
| <div class="d-flex"> | |
| <button class="btn btn-outline-light btn-sm" onclick="toggleTheme()" title="Toggle theme"> | |
| <i class="fas fa-moon" id="theme-icon"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Main Content --> | |
| <main class="container-fluid py-4"> | |
| {% block content %}{% endblock %} | |
| </main> | |
| <!-- Footer --> | |
| <footer class="modern-footer"> | |
| <div class="container"> | |
| <div class="row align-items-center"> | |
| <div class="col-md-4"> | |
| <div class="footer-brand"> | |
| <h5><i class="fas fa-brain"></i> NLP Ultimate Tutorial</h5> | |
| <p class="footer-description">Comprehensive guide to Natural Language Processing concepts and techniques.</p> | |
| </div> | |
| </div> | |
| <div class="col-md-4 text-center"> | |
| <div class="footer-credit"> | |
| <div class="credit-badge"> | |
| <span class="credit-text">Designed and developed by</span> | |
| <strong class="developer-name">Aradhya Pavan H S</strong> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="col-md-4 text-md-end"> | |
| <div class="social-links"> | |
| <a href="https://github.com/aradhyapavan" target="_blank" rel="noopener noreferrer" class="social-link github-link"> | |
| <i class="fab fa-github"></i> | |
| <span>GitHub</span> | |
| </a> | |
| <a href="https://www.linkedin.com/in/aradhya-pavan/" target="_blank" rel="noopener noreferrer" class="social-link linkedin-link"> | |
| <i class="fab fa-linkedin"></i> | |
| <span>LinkedIn</span> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Bootstrap JS --> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | |
| <!-- Custom JS --> | |
| <script src="{{ url_for('static', filename='js/main.js') }}"></script> | |
| {% block extra_scripts %}{% endblock %} | |
| </body> | |
| </html> | |