mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-20 10:03:43 +03:00
Removed directory.php refrence and file. Looked in assets folder removed files that did not have a refrence-v
This commit is contained in:
parent
11b9bf3604
commit
cbf4de28e7
|
@ -1,21 +0,0 @@
|
|||
/* copy homepage styles except those trendy fixed bg images */
|
||||
|
||||
.fftf-sorting-indicator {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.fftf-sorted-ascending .fftf-sorting-indicator,
|
||||
.fftf-sorted-descending .fftf-sorting-indicator,
|
||||
.fftf-companies th:hover .fftf-sorting-indicator {
|
||||
visibility: visible;
|
||||
font: normal 20px/1 dashicons;
|
||||
}
|
||||
|
||||
.fftf-sorting-indicator::before,
|
||||
.fftf-sorted-ascending .fftf-sorting-indicator::before {
|
||||
content: "\f142";
|
||||
}
|
||||
|
||||
.fftf-sorted-descending .fftf-sorting-indicator::before {
|
||||
content: "\f140";
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
// TODO
|
|
@ -1,65 +0,0 @@
|
|||
window.wp = window.wp || {};
|
||||
|
||||
jQuery( function( $ ) {
|
||||
'use strict';
|
||||
|
||||
var allCompanies = window.fiveFutureCompanies || {},
|
||||
sortOrder = 'ascending';
|
||||
|
||||
var app = window.wp.FiveForTheFuture = {
|
||||
// jsdoc
|
||||
init: function() {
|
||||
app.renderTemplate( allCompanies );
|
||||
|
||||
$( '#5ftf-search' ).keyup( app.searchCompanies );
|
||||
// works on keyup but not change. isn't change better?
|
||||
$( '.fftf-sorting-indicator' ).click( app.orderCompanies );
|
||||
},
|
||||
|
||||
//
|
||||
renderTemplate: function( companies ) {
|
||||
var $container = $( '#5ftf-companies-body' ),
|
||||
template = wp.template( '5ftf-companies' );
|
||||
|
||||
$container.html( template( companies ) );
|
||||
},
|
||||
|
||||
//
|
||||
searchCompanies: function( event ) {
|
||||
var matches = $.extend( true, [], allCompanies ),
|
||||
query = $( event.target ).val().toLowerCase();
|
||||
|
||||
matches = _.filter( matches, function( company ) {
|
||||
return -1 !== company.name.toLowerCase().indexOf( query );
|
||||
} );
|
||||
|
||||
app.renderTemplate( matches );
|
||||
},
|
||||
|
||||
//
|
||||
orderCompanies: function( event ) {
|
||||
var $activeSortButton = $( event.target ),
|
||||
$activeSortColumn = $activeSortButton.parent( 'th' ),
|
||||
$sortColumns = $( '.fftf-sorting-indicator' );
|
||||
|
||||
allCompanies = _.sortBy( allCompanies, $activeSortButton.data( 'field' ) );
|
||||
|
||||
$sortColumns.removeClass( 'fftf-sorted-ascending' );
|
||||
$sortColumns.removeClass( 'fftf-sorted-descending' );
|
||||
|
||||
if ( 'ascending' === sortOrder ) {
|
||||
sortOrder = 'descending';
|
||||
allCompanies = allCompanies.reverse();
|
||||
|
||||
$activeSortColumn.addClass( 'fftf-sorted-descending' );
|
||||
} else {
|
||||
sortOrder = 'ascending';
|
||||
$activeSortColumn.addClass( 'fftf-sorted-ascending' );
|
||||
}
|
||||
|
||||
app.renderTemplate( allCompanies );
|
||||
}
|
||||
};
|
||||
|
||||
app.init();
|
||||
} );
|
|
@ -1,107 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* This file handles operations related to registering blocks and their assets. If there end up being more than one
|
||||
* or two, we may want to create a subfolder and have a separate file for each block.
|
||||
*/
|
||||
|
||||
// TODO are we actually using any of this?
|
||||
|
||||
namespace WordPressDotOrg\FiveForTheFuture\Pledge_Directory;
|
||||
use WordPressDotOrg\FiveForTheFuture;
|
||||
use WordPressDotOrg\FiveForTheFuture\Pledge;
|
||||
|
||||
defined( 'WPINC' ) || die();
|
||||
|
||||
/**
|
||||
* Enqueue scripts and styles.
|
||||
*/
|
||||
function enqueue_scripts() {
|
||||
global $post;
|
||||
|
||||
wp_register_script(
|
||||
'5ftf-list',
|
||||
plugins_url( 'assets/js/front-end.js', __DIR__ ),
|
||||
array( 'jquery', 'underscore', 'wp-util' ),
|
||||
filemtime( FiveForTheFuture\PATH . '/assets/js/front-end.js' ),
|
||||
true
|
||||
);
|
||||
|
||||
wp_register_style(
|
||||
'5ftf-front-end',
|
||||
plugins_url( 'assets/css/front-end.css', __DIR__ ),
|
||||
array( 'dashicons' ),
|
||||
filemtime( FiveForTheFuture\PATH . '/assets/css/front-end.css' )
|
||||
);
|
||||
|
||||
if ( ! is_a( $post, 'WP_Post' ) || ! has_shortcode( $post->post_content, 'five_for_the_future_companies' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$params = array(
|
||||
/*
|
||||
* todo explain 100 is just sanity limit to keep page size performant. might need to lazy-load more in the
|
||||
* future.
|
||||
* maybe order by donated_employees, or rand, to ensure the top companies are always displayed first, or
|
||||
* to make sure treat everyone equal.
|
||||
*/
|
||||
'post_type' => Pledge\CPT_ID,
|
||||
'post_status' => 'publish',
|
||||
'posts_per_page' => 100,
|
||||
'orderby' => 'title',
|
||||
'order' => 'ASC',
|
||||
);
|
||||
|
||||
$companies = get_posts( $params );
|
||||
|
||||
foreach ( $companies as $key => $company ) {
|
||||
$teams = get_post_meta( $company->ID, '_5ftf_teams', false );
|
||||
|
||||
$companies[ $key ] = array(
|
||||
'name' => $company->post_title,
|
||||
'url' => $company->_5ftf_url,
|
||||
'total_employees' => $company->_5ftf_total_employees,
|
||||
'sponsored_employees' => $company->_5ftf_sponsored_employees,
|
||||
'hours_per_week' => $company->_5ftf_hours_per_week,
|
||||
'teams_contributing_to' => implode( ', ', $teams ),
|
||||
);
|
||||
}
|
||||
|
||||
$inline_script = sprintf(
|
||||
'var fiveFutureCompanies = JSON.parse( decodeURIComponent( \'%s\' ) );',
|
||||
rawurlencode( wp_json_encode( $companies ) )
|
||||
);
|
||||
|
||||
wp_enqueue_style( '5ftf-front-end' );
|
||||
wp_enqueue_script( '5ftf-list' );
|
||||
wp_add_inline_script( '5ftf-list', $inline_script );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\enqueue_scripts' );
|
||||
|
||||
/**
|
||||
* Todo.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function render_shortcode() {
|
||||
// The limit is just a sanity check, but ideally all should be displayed.
|
||||
// If this is reached, then refactor the page to lazy-load, etc.
|
||||
|
||||
ob_start();
|
||||
require_once dirname( __DIR__ ) . '/views/front-end.php';
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
||||
add_shortcode( 'five_for_the_future_companies', __NAMESPACE__ . '\render_shortcode' );
|
||||
|
||||
// todo shortcode for pledge form.
|
||||
// todo form handler for pledge form.
|
||||
|
||||
/**
|
||||
* Todo.
|
||||
*/
|
||||
function register() {
|
||||
//register_block_type();
|
||||
}
|
||||
|
||||
add_action( 'init', __NAMESPACE__ . '\register' );
|
|
@ -28,7 +28,6 @@ function load() {
|
|||
require_once get_includes_path() . 'pledge.php';
|
||||
require_once get_includes_path() . 'pledge-meta.php';
|
||||
require_once get_includes_path() . 'pledge-form.php';
|
||||
require_once get_includes_path() . 'directory.php';
|
||||
require_once get_includes_path() . 'xprofile.php';
|
||||
require_once get_includes_path() . 'pledge-log.php';
|
||||
}
|
||||
|
|
BIN
themes/pub/__MACOSX/._wporg
Normal file
BIN
themes/pub/__MACOSX/._wporg
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._.jshintignore
Normal file
BIN
themes/pub/__MACOSX/wporg/._.jshintignore
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._.jshintrc
Normal file
BIN
themes/pub/__MACOSX/wporg/._.jshintrc
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._404.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._404.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._Gruntfile.js
Normal file
BIN
themes/pub/__MACOSX/wporg/._Gruntfile.js
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._README.md
Normal file
BIN
themes/pub/__MACOSX/wporg/._README.md
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._archive.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._archive.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._bin
Normal file
BIN
themes/pub/__MACOSX/wporg/._bin
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._comments.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._comments.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._css
Normal file
BIN
themes/pub/__MACOSX/wporg/._css
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._footer-wporg.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._footer-wporg.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._footer.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._footer.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._functions.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._functions.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._header-page.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._header-page.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._header-wporg.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._header-wporg.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._header.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._header.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._images
Normal file
BIN
themes/pub/__MACOSX/wporg/._images
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._inc
Normal file
BIN
themes/pub/__MACOSX/wporg/._inc
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._index.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._index.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._js
Normal file
BIN
themes/pub/__MACOSX/wporg/._js
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._package.json
Normal file
BIN
themes/pub/__MACOSX/wporg/._package.json
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._page.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._page.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._search.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._search.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._sidebar.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._sidebar.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._single.php
Normal file
BIN
themes/pub/__MACOSX/wporg/._single.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._style.css
Normal file
BIN
themes/pub/__MACOSX/wporg/._style.css
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/._template-parts
Normal file
BIN
themes/pub/__MACOSX/wporg/._template-parts
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/bin/._build.php
Normal file
BIN
themes/pub/__MACOSX/wporg/bin/._build.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._base
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._base
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._components
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._components
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._generic
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._generic
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._objects
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._objects
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._settings
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._settings
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._style.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._style.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._tools
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._tools
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/._trumps
Normal file
BIN
themes/pub/__MACOSX/wporg/css/._trumps
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__base.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__base.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__copy.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__copy.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__elements.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__elements.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__headings.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__headings.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__links.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__links.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__lists.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__lists.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__tables.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__tables.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/base/.__typography.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/base/.__typography.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__404.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__404.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__comments.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__comments.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__components.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__components.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-content.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-content.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-header.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-header.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-meta.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-meta.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-summary.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry-summary.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__entry.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__gallery.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__gallery.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__main-navigation.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__main-navigation.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__page.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__page.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__post-navigation.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__post-navigation.scss
Normal file
Binary file not shown.
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__search-form.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__search-form.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__search.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__search.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__site-content.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__site-content.scss
Normal file
Binary file not shown.
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__site-header.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__site-header.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__site-title.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__site-title.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__widget-area.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__widget-area.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__wporg-footer.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__wporg-footer.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/components/.__wporg-header.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/components/.__wporg-header.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/generic/.__generic.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/generic/.__generic.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/generic/.__kube.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/generic/.__kube.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/generic/.__normalize.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/generic/.__normalize.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__accessibility.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__accessibility.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__alignments.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__alignments.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__buttons.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__buttons.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__clearings.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__clearings.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__copy.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__copy.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__inputs.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__inputs.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__links.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__links.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__notices.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__notices.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/objects/.__objects.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/objects/.__objects.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/settings/.__colors.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/settings/.__colors.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/settings/.__modular-scale.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/settings/.__modular-scale.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/settings/.__settings.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/settings/.__settings.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/settings/.__structure.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/settings/.__structure.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/settings/.__typography.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/settings/.__typography.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/tools/.__breakpoint.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/tools/.__breakpoint.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/tools/.__kube.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/tools/.__kube.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/tools/.__modular-scale.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/tools/.__modular-scale.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/tools/.__tools.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/tools/.__tools.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/css/trumps/.__trumps.scss
Normal file
BIN
themes/pub/__MACOSX/wporg/css/trumps/.__trumps.scss
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/images/._wp-logo-blue-trans-blur.png
Normal file
BIN
themes/pub/__MACOSX/wporg/images/._wp-logo-blue-trans-blur.png
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/images/._wp-logo-blue.png
Normal file
BIN
themes/pub/__MACOSX/wporg/images/._wp-logo-blue.png
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/inc/._footer.php
Normal file
BIN
themes/pub/__MACOSX/wporg/inc/._footer.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/inc/._header.php
Normal file
BIN
themes/pub/__MACOSX/wporg/inc/._header.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/inc/._template-tags.php
Normal file
BIN
themes/pub/__MACOSX/wporg/inc/._template-tags.php
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/js/._customizer.js
Normal file
BIN
themes/pub/__MACOSX/wporg/js/._customizer.js
Normal file
Binary file not shown.
BIN
themes/pub/__MACOSX/wporg/js/._navigation.js
Normal file
BIN
themes/pub/__MACOSX/wporg/js/._navigation.js
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue