Skip to content

Commit a63b7d2

Browse files
author
Roni Laukkarinen
committed
Switch svg uri to dir path for https sites, update readme, bump to 1.5.0
1 parent 6c9e87d commit a63b7d2

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,14 @@ Dudestarter is licensed with [The MIT License (MIT)](http://choosealicense.com/l
5252
* CSS reset with a combination with Nicolas Gallagher's [normalize*css](https://github.com/necolas/normalize.css/)
5353
* [Jeet](https://github.com/mojotech/jeet) Grid for SASS `@include col(1/100)`
5454
* Container div inside site-main
55+
* Possible to choose between fluid (flexible 100%) and snappy grid style (snapping to breakpoint, more space around)
56+
* Inline SVG-ready
5557

5658
#### Typography
5759

58-
* [Megatype](https://github.com/StudioThick/megatype) - A scalable and responsive typographic baseline (modular scale)
60+
* Responsive typography with viewport units with fallbacks (formerly [Megatype](https://github.com/StudioThick/megatype), still recommended with blogs or text-only based sites, but not included by default after 1.5.0)
5961
* Google Webfonts with Penman's [Sass-Web-Fonts](https://github.com/penman/Sass-Web-Fonts)
6062
* Web fonts helper: [Sass Boilerplate's fontFace-mixin](https://github.com/magnetikonline/sassboilerplate/blob/master/fontface.scss)
61-
* [Font-Awesome](https://github.com/FortAwesome/Font-Awesome) Glyph icons
6263

6364
#### Development
6465

footer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
<footer id="colophon" class="site-footer">
1717
<div class="site-info">
1818
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'air' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'air' ), 'WordPress' ); ?></a>
19-
<span class="theme-info"><?php printf( esc_html__( 'Lightweight like %1$s itself. You are using version %2$s', 'air' ), '<i>air</i>', esc_attr( AIR_VERSION ) ); ?> &mdash; <a href="https://github.com/digitoimistodude/air"><?php echo wp_remote_fopen( esc_url( get_template_directory_uri() . '/svg/github.svg' ) ); ?> GitHub</a></span>
19+
<span class="theme-info"><?php printf( esc_html__( 'Lightweight like %1$s itself. You are using version %2$s', 'air' ), '<i>air</i>', esc_attr( AIR_VERSION ) ); ?> &mdash; <a href="https://github.com/digitoimistodude/air"><?php echo file_get_contents( esc_url( get_stylesheet_directory() . '/svg/github.svg' ) ); ?> GitHub</a></span>
2020
</div><!-- .site-info -->
2121
</footer><!-- #colophon -->
2222
</div><!-- #page -->
2323

2424
<?php wp_footer(); ?>
2525

26-
<a href="#page" class="top"><span class="screen-reader-text"><?php echo esc_html_e('Back to top', 'air'); ?></span><?php echo wp_remote_fopen( esc_url( get_template_directory_uri() . '/svg/chevron-up.svg' ) ); ?></a>
26+
<a href="#page" class="top"><span class="screen-reader-text"><?php echo esc_html_e('Back to top', 'air'); ?></span><?php echo file_get_contents( esc_url( get_stylesheet_directory() . '/svg/chevron-up.svg' ) ); ?></a>
2727

2828
</body>
2929
</html>

functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* The current version of the theme.
1212
*/
13-
define( 'AIR_VERSION', '1.4.8' );
13+
define( 'AIR_VERSION', '1.5.0' );
1414

1515
/**
1616
* Allow Gravity Forms to hide labels to add placeholders

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "air",
3-
"version": "1.4.8",
3+
"version": "1.5.0",
44
"description": "A minimalist WordPress starter theme.",
55
"author": "Digitoimisto Dude Oy (moro@dude.fi)",
66
"devDependencies": {

style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Theme URI: https://github.com/digitoimistodude/air
44
Author: Digitoimisto Dude Oy
55
Author URI: https://www.dude.fi
66
Description: A minimalist WordPress starter theme.
7-
Version: 1.4.8
7+
Version: 1.5.0
88
License: GNU General Public License v2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010
Text Domain: air

0 commit comments

Comments
 (0)