15 | %s', 19 | esc_url( get_the_permalink() ), 20 | esc_html( get_the_title() ) 21 | ); 22 | } else { 23 | echo get_the_title(); 24 | } ?> 25 |
26 |Published on = get_the_date(); ?>
27 |├── .gitignore
├── 404.php
├── README.md
├── archive.php
├── assets
├── css
│ ├── app.css
│ ├── conditional
│ │ ├── article.css
│ │ ├── conditional.css
│ │ └── header.css
│ └── whitelist
│ │ ├── buttons.css
│ │ ├── forms.css
│ │ ├── icons.css
│ │ ├── navigation.css
│ │ ├── transitions.css
│ │ ├── type.css
│ │ ├── whitelist.css
│ │ └── wordpress.css
├── images
│ └── svg
│ │ ├── icon-chart.svg
│ │ ├── icon-gear.svg
│ │ ├── icon-growth.svg
│ │ ├── icon-instagram.svg
│ │ ├── icon-knowledge.svg
│ │ ├── icon-mark-white.svg
│ │ ├── icon-person.svg
│ │ ├── icon-ribbon.svg
│ │ ├── icon-search.svg
│ │ ├── icon-toolbox.svg
│ │ ├── icon-twitter.svg
│ │ └── monitor-window.svg
└── js
│ ├── main.js
│ └── modules
│ └── menu.js
├── comments.php
├── composer.json
├── composer.lock
├── content-templates
└── content-article.php
├── footer.php
├── functions.php
├── header.php
├── index.php
├── package-lock.json
├── package.json
├── page-templates
└── page-sample.php
├── screenshot.png
├── search.php
├── sidebar.php
├── src
├── classes.php
├── enqueue.php
├── setup.php
└── sidebars.php
├── style.css
├── tailwind.js
└── webpack.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | vendor
3 | dist
4 | .DS_Store
5 |
--------------------------------------------------------------------------------
/404.php:
--------------------------------------------------------------------------------
1 |
11 |
12 | It looks like nothing was found at this location. Maybe try one of the links below or a search?Oops! That page can't be found.
15 |
Published on = get_the_date(); ?>
27 |
28 | ' . get_the_title() . '' 33 | ); 34 | ?> 35 |
36 | 37 | 1 && get_option( 'page_comments' ) ) : ?> 39 | 46 | 48 | 49 |50 | 'ol', 53 | 'short_ping' => true, 54 | ) ); ?> 55 |
56 | 57 | 1 && get_option( 'page_comments' ) ) : ?> 59 | 66 | 68 | 69 | 71 | 72 | 76 | 77 | 79 | 80 | 82 |