Skip to content

Commit e2c8463

Browse files
committed
More stuff
1 parent a4647d9 commit e2c8463

File tree

136 files changed

+31
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+31
-18
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ wp-content/backup-db/
88
wp-content/backups/
99
wp-content/blogs.dir/
1010
wp-content/cache/
11-
wp-content/upgrade/
12-
wp-content/uploads/
1311
wp-content/wp-cache-config.php
12+
/nbproject/private/

nbproject/project.properties

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include.path=${php.global.include.path}
2+
php.version=PHP_56
3+
source.encoding=UTF-8
4+
src.dir=.
5+
tags.asp=false
6+
tags.short=false
7+
web.root=.

nbproject/project.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://www.netbeans.org/ns/project/1">
3+
<type>org.netbeans.modules.php.project</type>
4+
<configuration>
5+
<data xmlns="http://www.netbeans.org/ns/php-project/1">
6+
<name>AASGW</name>
7+
</data>
8+
</configuration>
9+
</project>

wp-content/themes/aasgw/functions.php

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Set the content width based on the theme's design and stylesheet.
1010
*/
1111
if ( ! isset( $content_width ) ) {
12-
$content_width = 640; /* pixels */
12+
$content_width = 640; /* max width for things inside content */
1313
}
1414

1515
if ( ! function_exists( 'aasgw_setup' ) ) :
@@ -46,7 +46,7 @@ function aasgw_setup() {
4646
*
4747
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
4848
*/
49-
//add_theme_support( 'post-thumbnails' );
49+
add_theme_support( 'post-thumbnails' );
5050

5151
// This theme uses wp_nav_menu() in one location.
5252
register_nav_menus( array(
@@ -66,14 +66,14 @@ function aasgw_setup() {
6666
* See http://codex.wordpress.org/Post_Formats
6767
*/
6868
add_theme_support( 'post-formats', array(
69-
'aside', 'image', 'video', 'quote', 'link',
69+
'aside'
7070
) );
7171

7272
// Set up the WordPress core custom background feature.
73-
add_theme_support( 'custom-background', apply_filters( 'aasgw_custom_background_args', array(
74-
'default-color' => 'ffffff',
75-
'default-image' => '',
76-
) ) );
73+
// add_theme_support( 'custom-background', apply_filters( 'aasgw_custom_background_args', array(
74+
// 'default-color' => 'ffffff',
75+
// 'default-image' => '',
76+
// ) ) );
7777
}
7878
endif; // aasgw_setup
7979
add_action( 'after_setup_theme', 'aasgw_setup' );
@@ -101,6 +101,8 @@ function aasgw_widgets_init() {
101101
*/
102102
function aasgw_scripts() {
103103
wp_enqueue_style( 'aasgw-style', get_stylesheet_uri() );
104+
105+
wp_enqueue_style('aasgw-fonts','http://fonts.googleapis.com/css?family=Droid+Sans|Arimo|Ubuntu|Muli|Gentium+Book+Basic');
104106

105107
wp_enqueue_script( 'aasgw-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );
106108

@@ -115,7 +117,7 @@ function aasgw_scripts() {
115117
/**
116118
* Implement the Custom Header feature.
117119
*/
118-
//require get_template_directory() . '/inc/custom-header.php';
120+
require get_template_directory() . '/inc/custom-header.php';
119121

120122
/**
121123
* Custom template tags for this theme.

wp-content/themes/aasgw/style.css

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
/*
22
Theme Name: AASGW
3-
Theme URI: http://underscores.me/
4-
Author: Underscores.me
5-
Author URI: http://underscores.me/
6-
Description: Description
3+
Author: Blimp Development
4+
Author URI: http://blimpdev.com/
5+
Description: Wordpress theme for the Allergy & Asthma Specialists of Greater Washington
76
Version: 1.0.0
87
License: GNU General Public License v2 or later
98
License URI: http://www.gnu.org/licenses/gpl-2.0.html
109
Text Domain: aasgw
11-
Tags:
12-
13-
This theme, like WordPress, is licensed under the GPL.
14-
Use it to make something cool, have fun, and share what you've learned with others.
10+
Tags: responsive-layout, custom-header, white
1511
1612
AASGW is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
1713
6.98 KB
19.7 KB
214 KB
7.29 KB
17.5 KB
184 KB
7.18 KB
17.5 KB
185 KB
11.3 KB
33.1 KB
306 KB
7.62 KB
18.1 KB
240 KB
8.42 KB
17.3 KB
161 KB
6.82 KB
600 KB
7.81 KB
22.1 KB
262 KB
11.2 KB
30.7 KB
332 KB
8.42 KB
21.4 KB
199 KB
338 KB
15.9 KB
167 KB
9.31 KB
23.8 KB
448 KB
9.54 KB
21.4 KB
277 KB
299 KB
87.6 KB
7.97 KB
116 KB
129 KB
Binary file not shown.
19.4 KB

0 commit comments

Comments
 (0)