Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
Deploying v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
metamn committed Apr 16, 2018
1 parent cbc4ba3 commit 0da51e7
Show file tree
Hide file tree
Showing 38 changed files with 717 additions and 71 deletions.
81 changes: 81 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
*.log
wp-config.php
wp-content/advanced-cache.php
wp-content/backup-db/
wp-content/backups/
wp-content/blogs.dir/
wp-content/cache/
wp-content/upgrade/
wp-content/uploads/
wp-content/wp-cache-config.php
wp-content/plugins/hello.php

/.htaccess
/license.txt
/readme.html
/sitemap.xml
/sitemap.xml.gz

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env



.sass-cache/
*.css.map
4 changes: 3 additions & 1 deletion 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
</div>

<aside class="search">
<h3 hidden>Search form</h3>
<h3 hidden>
<?php esc_html_e( 'Search form', 'log-lolla' ); ?>
</h3>

<?php get_search_form(); ?>
</aside>
Expand Down
30 changes: 28 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Log Lolla aims to be the single destination, the hub of all content you publish

For more information about Log Lolla please go to https://morethemes.baby/themes/log-lolla

For a live demo of Log Lolla please visit https://morethemes.baby/log-lolla-demo/

== Installation ==

1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
Expand Down Expand Up @@ -62,7 +64,31 @@ License: GNU General Public License v2 or later

== Changelog ==

= 1.0 =
= 1.0.2 =
* Released April 16, 2018

Fixed issues:

* Change theme URL to point to a page with information about the theme
* There are some untranslated strings
* Post format status needs a title (for the HTML5 Outliner only)

https://github.com/morethemesbaby/log-lolla/releases/tag/v1.0.2

= 1.0.1 =
* Released: March 26, 2018

Fixed issues:

* Single post title should not be a link
* Embedded content has a too big upper spacing
* Continue reading needs a top spacing (when we have 'more' in the post content)
* Continue Reading is inconsistent and sometimes is broken
* Navigation links on mobile have inconsistent spacing

https://github.com/morethemesbaby/log-lolla/releases/tag/v1.0.1

= 1.0.0 =
* Released: February 12, 2018

https://github.com/morethemesbaby/log-lolla
https://github.com/morethemesbaby/log-lolla/releases/tag/1.0.0
4 changes: 3 additions & 1 deletion home.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
get_header(); ?>

<section class="content content-home">
<h3 hidden>Home</h3>
<h3 hidden>
<?php esc_html_e( 'Home', 'log-lolla' ); ?>
</h3>

<?php
$query = new WP_Query( 'category_name=to-home-page' );
Expand Down
4 changes: 3 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
get_header(); ?>

<section class="content content-index">
<h3 hidden>Content</h3>
<h3 hidden>
<?php esc_html_e( 'Content', 'log-lolla' ); ?>
</h3>

<?php
if ( have_posts() ) :
Expand Down
Binary file added languages/log-lolla-en.mo
Binary file not shown.
Loading

0 comments on commit 0da51e7

Please sign in to comment.