Skip to content

Commit

Permalink
initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Parker committed Dec 31, 2024
1 parent 88864ad commit 2200c71
Show file tree
Hide file tree
Showing 50 changed files with 2,361 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.git/
.DS_Store
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# cpar-website-wp
a boilerplate for building custom websites w/ WordPress
# CPAR WEBSITE

a boilerplate Hybrid Theme for building custom websites w/ WordPress


## Changelogs

**== v1.0 ==** [December 30th, 2024]

- initial release
21 changes: 21 additions & 0 deletions cpar-admin/assets/css/admin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* GLOBAL ADMIN STYLES
*/

.cpar-notice {
background-color: #000;
color: #fff;
font-weight: 500;
border-radius: 5px;
border-left: none; }

.cpar-notice > span { font-weight: 900; }

div[data-type^="cpar/"] {
background: #000;
color: #fff;
font-weight: 500;
padding: 20px;
border-radius: 20px;
text-align: center;
text-transform: uppercase; }
10 changes: 10 additions & 0 deletions cpar-admin/assets/css/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

/*
* SECURITY BLANKET
* prevent the display of files within this directory
*
* @package cpar-website-wp
*/

if ( ! defined( 'ABSPATH' ) ) : exit; endif; // SILENCE IS GOLDEN ?>
10 changes: 10 additions & 0 deletions cpar-admin/assets/fonts/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

/*
* SECURITY BLANKET
* prevent the display of files within this directory
*
* @package cpar-website-wp
*/

if ( ! defined( 'ABSPATH' ) ) : exit; endif; // SILENCE IS GOLDEN ?>
6 changes: 6 additions & 0 deletions cpar-admin/assets/images/cpar-blocks.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cpar-admin/assets/images/cpar-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions cpar-admin/assets/images/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

/*
* SECURITY BLANKET
* prevent the display of files within this directory
*
* @package cpar-website-wp
*/

if ( ! defined( 'ABSPATH' ) ) : exit; endif; // SILENCE IS GOLDEN ?>
10 changes: 10 additions & 0 deletions cpar-admin/assets/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

/*
* SECURITY BLANKET
* prevent the display of files within this directory
*
* @package cpar-website-wp
*/

if ( ! defined( 'ABSPATH' ) ) : exit; endif; // SILENCE IS GOLDEN ?>
10 changes: 10 additions & 0 deletions cpar-admin/assets/js/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

/*
* SECURITY BLANKET
* prevent the display of files within this directory
*
* @package cpar-website-wp
*/

if ( ! defined( 'ABSPATH' ) ) : exit; endif; // SILENCE IS GOLDEN ?>
10 changes: 10 additions & 0 deletions cpar-admin/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

/*
* SECURITY BLANKET
* prevent the display of files within this directory
*
* @package cpar-website-wp
*/

if ( ! defined( 'ABSPATH' ) ) : exit; endif; // SILENCE IS GOLDEN ?>
Loading

0 comments on commit 2200c71

Please sign in to comment.