Skip to content

Commit ad14e12

Browse files
committed
Initial commit
1 parent 43d7f0c commit ad14e12

File tree

76 files changed

+18869
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+18869
-1
lines changed

404.php

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
/**
3+
* The template for displaying 404 pages (not found)
4+
*/
5+
6+
get_header(); ?>
7+
8+
<section id="primary" class="content-area col-sm-12 col-lg-8">
9+
<main id="main" class="site-main" role="main">
10+
11+
<section class="error-404 not-found">
12+
<header class="page-header">
13+
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'repli-grace' ); ?></h1>
14+
</header><!-- .page-header -->
15+
16+
<div class="page-content">
17+
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'repli-grace' ); ?></p>
18+
19+
<?php
20+
get_search_form();
21+
?>
22+
23+
</div><!-- .page-content -->
24+
</section><!-- .error-404 -->
25+
26+
</main><!-- #main -->
27+
</section><!-- #primary -->
28+
29+
<?php
30+
get_sidebar();
31+
get_footer();

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
# wordpress-grace-theme
1+
# wordpress-grace-theme
2+
3+
Installation
4+
1. Copy the theme to the wp-content/themes
5+
2. Install the required plugins
6+
7+
If you have any question, please contact us.
8+
http://www.webbizz.org

archive.php

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?php
2+
/**
3+
* The template for displaying archive pages
4+
*/
5+
6+
get_header(); ?>
7+
8+
<section id="primary" class="content-area col-sm-12 col-lg-8">
9+
<main id="main" class="site-main" role="main">
10+
11+
<?php
12+
if ( have_posts() ) : ?>
13+
14+
<header class="page-header">
15+
<?php
16+
the_archive_title( '<h1 class="page-title">', '</h1>' );
17+
the_archive_description( '<div class="archive-description">', '</div>' );
18+
?>
19+
</header><!-- .page-header -->
20+
21+
<?php
22+
/* Start the Loop */
23+
while ( have_posts() ) : the_post();
24+
25+
/*
26+
* Include the Post-Format-specific template for the content.
27+
* If you want to override this in a child theme, then include a file
28+
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
29+
*/
30+
get_template_part( 'template-parts/content', get_post_format() );
31+
32+
endwhile;
33+
34+
the_posts_navigation();
35+
36+
else :
37+
38+
get_template_part( 'template-parts/content', 'none' );
39+
40+
endif; ?>
41+
42+
</main><!-- #main -->
43+
</section><!-- #primary -->
44+
45+
<?php
46+
get_sidebar();
47+
get_footer();

assets/images/arrow_left.png

1.1 KB
Loading

assets/images/arrow_right.png

1.07 KB
Loading

assets/images/backup.sql

+1,068
Large diffs are not rendered by default.

assets/images/banner_bg.jpg

27.4 KB
Loading

assets/images/gallery_hover_icon.png

121 Bytes
Loading

assets/images/home_about_bg.png

22.9 KB
Loading

assets/images/img_210X140.png

1.98 KB
Loading

assets/images/repli_logo.png

1.17 KB
Loading

assets/js/custom.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
jQuery( function ( $ ) {
2+
'use strict';
3+
4+
// Add your code here
5+
6+
});

0 commit comments

Comments
 (0)