├── .gitignore
├── screenshot.png
├── assets
├── images
│ ├── bg-grad-top.png
│ ├── bg-grad-bottom.png
│ └── magnify-glass.svg
├── js
│ ├── functions.js
│ └── jquery.slicknav.min.js
└── languages
│ └── wfx-girder.pot
├── loop-content-page.php
├── loop-content-date.php
├── loop-content-archive.php
├── loop-content.php
├── loop-content-single.php
├── sidebar-content.php
├── header-content.php
├── footer-content.php
├── README.md
├── functions.php
├── style.css
└── LICENSE
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonnyauk/wonderflux-girder/HEAD/screenshot.png
--------------------------------------------------------------------------------
/assets/images/bg-grad-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonnyauk/wonderflux-girder/HEAD/assets/images/bg-grad-top.png
--------------------------------------------------------------------------------
/assets/images/bg-grad-bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonnyauk/wonderflux-girder/HEAD/assets/images/bg-grad-bottom.png
--------------------------------------------------------------------------------
/assets/js/functions.js:
--------------------------------------------------------------------------------
1 | /**
2 | * All the Javascript functions
3 | * @package Girder child theme for Wonderflux framework
4 | */
5 |
6 | ( function( $ ) {
7 |
8 | /* Responsive nav 1 */
9 | ( function() {
10 |
11 | $('#primary-header-nav').slicknav({
12 | prependTo:'#header-content',
13 | allowParentLinks: 'true',
14 | label:'Menu',
15 | closeOnClick:'false',
16 | });
17 |
18 | } )();
19 |
20 | } )( jQuery );
--------------------------------------------------------------------------------
/loop-content-page.php:
--------------------------------------------------------------------------------
1 |
7 |
8 |
>
9 |
10 |
11 |
12 |
13 |
14 | '
' . __( 'Pages:', 'wfx-girder' ), 'after' => '
' ) );
18 | ?>
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/loop-content-date.php:
--------------------------------------------------------------------------------
1 |
8 |
9 | >
9 |
10 |
11 |
12 |
13 |
14 |
23 |
24 |
25 |
26 | '
' . __( 'Pages:', 'wfx-girder' ), 'after' => '
' ) );
29 | ?>
30 |
31 |
--------------------------------------------------------------------------------
/loop-content.php:
--------------------------------------------------------------------------------
1 |
7 |
8 | >
9 |
10 |
11 |
12 |
13 |
14 |
23 |
24 |
25 |
26 | '
' . __( 'Pages:', 'wfx-girder' ), 'after' => '
' ) );
29 | ?>
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/loop-content-single.php:
--------------------------------------------------------------------------------
1 |
7 |
8 | >
9 |
10 |
11 |
12 |
13 |
14 | '
' . __( 'Pages:', 'wfx-girder' ), 'after' => '
' ) );
17 | wfx_edit_meta('intro=N&adminlink=N&postcontrols=N&pagecontrols=Nwfcontrols=N&widgetslink=N');
18 | ?>
19 |
20 |
21 |
22 |
23 |
24 | Posted in: ' . get_the_category_list( ', ' );
26 | $tag_list = get_the_tag_list( '', ', ' );
27 | if ( $tag_list ) {
28 | echo ' | ';
29 | echo '
Tagged with: ' . $tag_list . '
';
30 | }
31 | echo '
' . 'Written by ' . ucwords(get_the_author_link()) . '
';
32 | ?>
33 |
34 |
35 |
36 |
37 |
38 |
39 |
' . _x( '←', 'Previous post link', 'wfx-girder' ) . ' %title' ); ?>
40 |
' . _x( '→', 'Next post link', 'wfx-girder' ) . '' ); ?>
41 |
42 |
43 |
--------------------------------------------------------------------------------
/sidebar-content.php:
--------------------------------------------------------------------------------
1 |
12 |
13 |
22 |
23 |
51 |
52 |
--------------------------------------------------------------------------------
/header-content.php:
--------------------------------------------------------------------------------
1 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/assets/images/magnify-glass.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |