Skip to content

Commit 7435e37

Browse files
committed
πŸ‘Œ IMPROVE: Default theme
1 parent 27a9996 commit 7435e37

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
# Changelog
33

4+
**v0.2.9-19**
5+
- πŸ‘Œ IMPROVE: Default theme.
6+
47
**v0.2.9-18**
58
- πŸ› FIX: Missing `.editorconfig` from installation.
69
- πŸ‘Œ IMPROVE: Code style consistency.

β€Žinstaller/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wordpressify",
3-
"version": "0.2.9-18",
3+
"version": "0.2.9-19",
44
"description": "A build system designed to automate your WordPress development workflow.",
55
"keywords": [
66
"babel",

β€Žpackage-lock.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wordpressify",
3-
"version": "0.2.9-18",
3+
"version": "0.2.9-19",
44
"description": "A build system designed to automate your WordPress development workflow.",
55
"keywords": [
66
"babel",

β€Žsrc/theme/content-single.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<article class="single">
22
<h1 class="single-title"><?php the_title(); ?></h1>
33
<?php if (!is_single()) : ?>
4-
<p class="post-info">
4+
<p class="post-info pb-4">
55
<span class="date">
66
<?php the_time('F j, Y g:i a'); ?>
77
</span>

β€Žsrc/theme/content.phpβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('small-thumbnail'); ?></a>
44
</div>
55
<div class="inner-content">
6-
<h2 class="item-title text-5xl pb-5 font-bold text-blue-600 transition-all hover:text-red-500">
6+
<h2 class="item-title text-5xl pb-4 font-bold text-blue-600 transition-all hover:text-red-500">
77
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
88
</h2>
9-
<p class="post-info">
9+
<p class="post-info pb-4">
1010
<?php echo get_the_excerpt(); ?>
1111
<?php
1212
$categories = get_the_category();

0 commit comments

Comments
Β (0)