Skip to content

Commit

Permalink
Merge pull request #13 from eighteen73/feature/no-tailwind
Browse files Browse the repository at this point in the history
Remove Tailwind
  • Loading branch information
brettsmason authored Dec 20, 2022
2 parents 60974f7 + 2c3d83e commit fc2556b
Show file tree
Hide file tree
Showing 94 changed files with 33,676 additions and 34,478 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Pulsar

<p>
<strong>WordPress starter theme with Tailwind CSS, Alpine JS and a modern development workflow</strong>
<strong>WordPress starter theme for a modern development workflow</strong>
</p>

## Requirements
Expand All @@ -23,7 +23,6 @@ themes/your-theme-name/ # → Root of your theme
│ ├── block-styles.php # → Custom block styles
│ ├── blocks.php # → All enabled blocks
│ └── browsersync.json # → Developer-specific configuration for BrowserSync (if wanted)
│ └── mix.json # → Mix entries and other settings
├── includes/ # → Theme functions and classes
│ └── classes/ # → Theme classes (autoloaded)
│ ├── Contracts/ # → Interfaces and Traits
Expand All @@ -32,7 +31,6 @@ themes/your-theme-name/ # → Root of your theme
│ ├── Patterns.php # → Block pattern management
│ ├── Styles.php # → Block styles management
│ └── Tools/ # → Various tools used throughout the theme
│ ├── Mix.php # → Handles asset management with Laravel Mix
│ └── Svg.php # → Allows manipulating SVGs and inlining them
│ ├── Enqueue.php # → Theme assets
│ └── Setup.php # → Theme setup
Expand Down
3 changes: 3 additions & 0 deletions assets/svg/dropdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/svg/hamburger.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions assets/svg/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
?>

<div id="comments">
<h2 class="sr-only"><?php esc_html_e( 'Comment section', 'pulsar' ); ?></h2>
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment section', 'pulsar' ); ?></h2>

<?php
// You can start editing here -- including this comment!
Expand All @@ -40,7 +40,7 @@
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through?
?>
<nav id="comment-nav-above" role="navigation">
<h3 class="sr-only"><?php esc_html_e( 'Comment navigation', 'pulsar' ); ?></h3>
<h3 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'pulsar' ); ?></h3>
<div>
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'pulsar' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'pulsar' ) ); ?></div>
Expand All @@ -64,7 +64,7 @@
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
?>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h2 class="sr-only"><?php esc_html_e( 'Comment navigation', 'pulsar' ); ?></h2>
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'pulsar' ); ?></h2>
<div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'pulsar' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'pulsar' ) ); ?></div>
Expand Down
Loading

0 comments on commit fc2556b

Please sign in to comment.