Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sunlandcomputers authored Jun 7, 2024
0 parents commit f61e2a8
Show file tree
Hide file tree
Showing 27 changed files with 2,437 additions and 0 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Lunar Theme for ClassicPress

Lunar is a theme that you can look up to and smile at. Demo at https://demos.tradesnet.us/

Theme Name: Lunar

Contributors: Tradesouthwest

Requires PHP: 7.2

Requires CP: 1.4

Tested up to: 1.5

Version: 1.0.4

Text domain: lunar

License: GPLv2 or later; License URI: http://www.gnu.org/licenses/gpl-2.0.html;

Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, threaded-comments, translation-ready, blog

## Description

Lunar is a theme that you can look up to and smile at. Demo at https://demos.tradesnet.us/

## Features
- Featured image captions
- Header image upload
- Background color of full page
- Adjustable content width
- font and background color adjustments
- Uses CSS Flex layout for reliable responsive design
- Three footer widgets
- Sidebar is on right

## Installation

1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
2. Type in solo in the search form and press the 'Enter' key on your keyboard.
3. Click on the 'Activate' button to use your new theme right away.
4. Navigate to Appearance > Customize in your admin panel and customize to taste.


## Copyright

solo ClassicPress Theme, Copyright 2023 tradesouthwest.com
solo is distributed under the terms of the GNU GPL

## Notes

Theme is not fully accessibility ready.
61 changes: 61 additions & 0 deletions comments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<?php
/**
* The template for displaying comments
*
* The area of the page that contains both current comments
* and the comment form.
*
* @package fastbreak
* @since fastbreak 1.0.3
*/

/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) {
return;
}
?>

<div id="comments" class="comments-area">

<?php if ( have_comments() ) : ?>
<h3><?php esc_html_e( 'Disscusion', 'lunar'); ?></h3>

<?php the_comments_navigation(); ?>

<ol class="comment-list">
<?php
wp_list_comments(
array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 42,
)
);
?>
</ol><!-- .comment-list -->

<?php the_comments_navigation(); ?>

<?php endif; // Check for have_comments(). ?>

<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'lunar' ); ?></p>
<?php endif; ?>

<?php
comment_form(
array(
'title_reply_before' => '<h4 id="reply-title" class="comment-reply-title">',
'title_reply_after' => '</h4>',
)
);
?>

</div><!-- .comments-area -->
1 change: 1 addition & 0 deletions editor-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* solo editor styles */
57 changes: 57 additions & 0 deletions footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<footer class="site-footer">

<div class="footer-section">

<?php if ( is_active_sidebar( 'footer-one' ) ) { ?>
<div class="footer-block foot-one">

<?php dynamic_sidebar( 'footer-one' ); ?>

</div>

<?php } ?>
</div>

<div class="footer-section">

<?php if ( is_active_sidebar( 'footer-two' ) ) { ?>
<div class="footer-block foot-two">

<?php dynamic_sidebar( 'footer-two' ); ?>

</div>

<?php } ?>
</div>

<div class="footer-section">

<?php if ( is_active_sidebar( 'footer-three' ) ) { ?>
<div class="footer-block foot-three">

<?php dynamic_sidebar( 'footer-three' ); ?>

</div>

<?php } ?>
</div>

</footer>
<div class="footer-base">
<div class="site-copyright">
<small><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="bookmark">
<?php
printf( '<small>%s &copy; %s</small>',
bloginfo( 'name' ),
esc_html( gmdate( 'Y' ) )
); ?></a></small>
</div>
<div class="upto">
<a class="back_to_top" title="<?php esc_attr_e('Top of page link', 'lunar'); ?>"><sup>^</sup></a>
</div>
</div>

<?php wp_footer(); ?>

</body>
</html>
Loading

0 comments on commit f61e2a8

Please sign in to comment.