Project Files
0 files
0 folders
- assets
- demo
- inc
- template-parts
- .gitignore.gitignore.phpintel .sass-cache .scss-cache scss/.sass-cache/ bower_components .bower-cache .bower-registry .bower-tmp .idea/ _book ...
- README.mdREADME.md# [WordPress Theme - Aquila](https://youtu.be/lNtw4yxEydM) 🎨 [](https://www.repostatus.org/#active) [](https://github.com/prettier/prettier) * A WordPress theme Project for Advanced WordPress Theme Development Course. This theme uses Bootstrap. [Learn](https://www.youtube.com/playlist?list=PLD8nQCAhR3tT3ehpyOpoYeUj...
- archive.phparchive.php<?php /** * Archive Page template file. * * @package Aquila */ get_header(); ?> <div id="primary"> <main id="main" class="site-main my-5" role="main"> ...
- author.phpauthor.php<?php /** * Author Archive Page template file. * * @package Aquila */ get_header(); $author = get_queried_object(); ?> <div id="primary"> ...
- comments.phpcomments.php<?php /** * The template for displaying Comments. * * The area of the page that contains comments and the comment form. * * @package Aquila */ /* * If the current post is protected by a password and the visitor has not yet ...
- date.phpdate.php<?php /** * Date Archive Page template file. * * @package Aquila */ get_header(); global $wp_query; $the_date = ''; $the_date_permalink = get_home_url(); ...
- footer.phpfooter.php<?php /** * Footer template * * @package Aquila */ ?> <footer id="site-footer" class="bg-light p-4"> <div class="container color-gray"> <div class="row"> ...
- front-page.phpfront-page.php<?php /** * Front page template * * @package aquila */ get_header(); ?> <div id="primary"> <main id="main" class="site-main mt-5" role="main"> ...
- functions.phpfunctions.php<?php /** * Theme Functions. * * @package Aquila */ if ( ! defined( 'AQUILA_DIR_PATH' ) ) { define( 'AQUILA_DIR_PATH', untrailingslashit( get_template_directory() ) ); } if ( ! defined( 'AQUILA_DIR_URI' ) ) { ...
- header.phpheader.php<?php /** * Header template. * * @package Aquila */ ?> <!doctype html> <html <?php language_attributes(); ?>> <head> ...
- index.phpindex.php<?php /** * Main template file. * * @package Aquila */ get_header(); ?> <div id="primary"> <main id="main" class="site-main mt-5" role="main"> ...
- page-loadmore-demo.phppage-loadmore-demo.php<?php /** * Page template * * @package Aquila */ use AQUILA_THEME\Inc\Loadmore_Posts; get_header(); $loadmore_posts = Loadmore_Posts::get_instance(); ?> ...
- page-search.phppage-search.php<?php /** * Page template search. * * @package Aquila */ get_header(); $filters_data = get_filters_data(); ?> <div id="primary"> ...
- page.phppage.php<?php /** * Page template * * @package Aquila */ get_header(); ?> <div>Single Page</div> <?php get_footer(); ?> ...
- screenshot.pngscreenshot.pngBinary file or too large to preview
- search.phpsearch.php<?php /** * Search result page. */ get_header(); global $wp_query; //echo '<pre/>'; //print_r($wp_query); //wp_die(); ?> ...
- searchform.phpsearchform.php<?php /** * Custom Search Form. */ ?> <form role="search" method="get" class="form-inline search-form my-2 my-lg-0" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <span class="screen-reader-text"><?php echo _x( 'Search for:', 'label', 'aquila' ); ?></span> <input class="form-control mr-sm-2" type="search" placeholder="<?php echo esc_attr_x( 'Search', 'placeholder', 'aquila' ); ?>" value="<?php the_search_query(); ?>" aria-label="Search" name="s"> <button class="btn btn-outline-success ...
- sidebar.phpsidebar.php<?php /** * The sidebar containing the main widget area. * * @package Aquila */ ?> <aside id="secondary" role="complementary"> <?php dynamic_sidebar( 'sidebar-1' ); ?> </aside><!-- #secondary --> ...
- single.phpsingle.php<?php /** * Single post template file. * * @package Aquila */ get_header(); ?> <div id="primary"> <main id="main" class="site-main mt-5" role="main"> ...
- style.cssstyle.css/* Theme Name: Aquila Theme URI: https://codeytek.com/aquila Author: Imran Sayed Author URI: https://codeytek.com/about Description: WordPress blogging theme Tags: blog, theme Version: 1.0 Requires at least: 5.0 Tested up to: 5.4 ...
Select a file from project to view its contents
Bookmarks