-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathincludes.php
More file actions
72 lines (63 loc) · 3.9 KB
/
Copy pathincludes.php
File metadata and controls
72 lines (63 loc) · 3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* Pattern Library
*
* A package for defining commonly-used atoms and organisms, which expedites the front-end development process.
*
* @version 0.7.0
*/
/*——————————————————————————————————————————————————————————————————————————————
/ Templates: what we base all the other classes on.
——————————————————————————————————————————————————————————————————————————————*/
include_once( 'class.helpers.php' );
include_once( 'class.atom-template.php' );
include_once( 'class.organism-template.php' );
/*——————————————————————————————————————————————————————————————————————————————
/ Atoms: order matters. Make sure you include the source class before extending classes.
——————————————————————————————————————————————————————————————————————————————*/
$atoms_dir = 'atoms/';
include_once( $atoms_dir . 'link.php' );
include_once( $atoms_dir . 'post-link.php' );
include_once( $atoms_dir . 'post-parent-link.php' );
include_once( $atoms_dir . 'front-page-link.php' );
include_once( $atoms_dir . 'site-title-front-page-link.php' );
include_once( $atoms_dir . 'posts-page-link.php' );
include_once( $atoms_dir . 'facebook-share.php' );
include_once( $atoms_dir . 'twitter-share.php' );
include_once( $atoms_dir . 'email-share.php' );
include_once( $atoms_dir . 'excerpt.php' );
include_once( $atoms_dir . 'excerpt-force.php' );
include_once( $atoms_dir . 'excerpt-search.php' );
include_once( $atoms_dir . 'post-class.php' );
include_once( $atoms_dir . 'post-thumbnail.php' );
include_once( $atoms_dir . 'post-title.php' );
include_once( $atoms_dir . 'post-title-link.php' );
include_once( $atoms_dir . 'category-list.php' );
include_once( $atoms_dir . 'loop.php' );
include_once( $atoms_dir . 'schema-address.php' );
include_once( $atoms_dir . 'post-date.php' );
include_once( $atoms_dir . 'event-date.php' );
include_once( $atoms_dir . 'event-badge.php' );
include_once( $atoms_dir . 'taxonomy-list.php' );
include_once( $atoms_dir . 'list-terms.php' );
include_once( $atoms_dir . 'list-pages.php' );
include_once( $atoms_dir . 'post-author.php' );
include_once( $atoms_dir . 'post-author-link.php' );
include_once( $atoms_dir . 'menu.php' );
include_once( $atoms_dir . 'image.php' );
include_once( $atoms_dir . 'image-background.php' );
include_once( $atoms_dir . 'content-source-link.php' );
include_once( $atoms_dir . 'post-term-link-single.php' );
include_once( $atoms_dir . 'post-term-single.php' );
include_once( $atoms_dir . 'comment-number.php' );
/*——————————————————————————————————————————————————————————————————————————————
/ Organisms
——————————————————————————————————————————————————————————————————————————————*/
$organisms_dir = 'organisms/';
include_once( $organisms_dir . 'background-video.php' );
include_once( $organisms_dir . 'post-list.php' );
include_once( $organisms_dir . 'event-list.php' );
include_once( $organisms_dir . 'subnav.php' );
include_once( $organisms_dir . 'post-header-singular.php' );
include_once( $organisms_dir . 'post-header-archive.php' );
include_once( $organisms_dir . 'section-header.php' );