Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
air66design committed Jul 24, 2019
0 parents commit 5efebf4
Show file tree
Hide file tree
Showing 8,591 changed files with 899,103 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
103 changes: 103 additions & 0 deletions app/js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
$( document ).ready(function() {
// Get the theme URL
var url;
if ($('meta[name=pluginURL]').attr("content")) {
url = $('meta[name=pluginURL]').attr("content");
} else {
// If for some reason we can't find the URL attribute
url = "/user/plugins/air66Theme";
}

// Detect login page
if ($("body").hasClass("login")) {

$("#login").prepend('<img class="air66-logo" src="' + url + '/dist/images/a66-logo.svg" alt="Air 66 Design Ltd Logo">');
}

// Remove the YOURLS header
$("header[role=banner]").hide();
$("header[role=banner]").remove();

// remove help link in nav
$('#admin_menu_help_link').remove();

$('#admin_menu').append('<li class="admin_menu_toplevel"><a href="https://air66design.com" target="_blank">Contact Air 66 Design</a></li>');

// Add New A66 header
$("body").prepend($('<header class="site-header">').load(url + '/dist/html/header.php', function() {
// run add header content function
a66_add_header_content();

$('body').prepend('<div class="nav-overlay"></div>');
// add air 66 design link to menu

// Nav icon toggle
$('#menu-icon').click(function(){
$(this).toggleClass('open');
$('nav, .nav-overlay').toggleClass('nav-open');
});

if ($("body").hasClass("index")) {

// Add content padding to suit new URL section
//$("#wrap").css("padding-top", "200px");
// Hide YOURLS new URL section
$("#new_url").hide();
// Grab the nonce id
var nonce = $("#nonce-add").val();

// Remove the YOURLS new URL Section
$("#new_url").remove();

$(".index").prepend($('<div class="form-wrap">').load(url + '/dist/html/form.php', function () {
$("#nonce-add").val(nonce);
}));
} else {
//$("#wrap").css("padding-top", "70px");
}
}));


// Update favicon
$('link[rel="shortcut icon"]').attr('href', url + "/dist/images/favicon.ico")

// wrap index table in table-responsive

$('#main_table').wrap("<div class='table-responsive'></div>");
$( "#main_table" ).addClass( "table" );

// handle p tags

$("p").each(function (index) {
if (/Display/.test($(this).text()) || /Overall/.test($(this).text())) {
// Move info on index page to the bottom
$("main").append("<p>" + $(this).html() + "</p>");
$(this).remove();
} else if (/Powered by/.test($(this).text())) {
// Update footer
var content = $(this).html();
var i = 77
var updated_content = "Running on" + content.slice(13, i) + '& <a href="https://air66design.com/" title="Air 66 Design Ltd" target="_blank">Air 66 Design Ltd</a>' + content.slice(i-1)
$(this).html(updated_content);
}
});

// wrap div around data tabs so can scroll on small screens

$('#stat_tab_stats, #stat_tab_location, #stat_tab_sources, #stat_tab_share').wrapAll('<div class="tab-scroll"></div>');

// remove help link in nav
$('#admin_menu_help_link').remove();


// add header function

function a66_add_header_content() {
$('.site-header').append('<div class="air66-logo-wrap"><a class="air66-logo-link" href="https://air66design.com" target="_blank"><img class="air66-logo" src="' + url + '/dist/images/a66-logo-wh.svg" alt="Air 66 Design Ltd Logo"></a></div>');
}





});// end document.ready
45 changes: 45 additions & 0 deletions app/scss/_bootstrap.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*!
* Bootstrap v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

@import "../../node_modules/bootstrap/scss/functions";
@import "../../node_modules/bootstrap/scss/variables";
@import "../../node_modules/bootstrap/scss/mixins";
@import "../../node_modules/bootstrap/scss/root";
@import "../../node_modules/bootstrap/scss/reboot";
//@import "../../node_modules/bootstrap/scss/type";
@import "../../node_modules/bootstrap/scss/images";
@import "../../node_modules/bootstrap/scss/code";
@import "../../node_modules/bootstrap/scss/grid";
@import "../../node_modules/bootstrap/scss/tables";
@import "../../node_modules/bootstrap/scss/forms";
@import "../../node_modules/bootstrap/scss/buttons";
@import "../../node_modules/bootstrap/scss/transitions";
@import "../../node_modules/bootstrap/scss/dropdown";
@import "../../node_modules/bootstrap/scss/button-group";
@import "../../node_modules/bootstrap/scss/input-group";
@import "../../node_modules/bootstrap/scss/custom-forms";
@import "../../node_modules/bootstrap/scss/nav";
@import "../../node_modules/bootstrap/scss/navbar";
@import "../../node_modules/bootstrap/scss/card";
@import "../../node_modules/bootstrap/scss/breadcrumb";
@import "../../node_modules/bootstrap/scss/pagination";
@import "../../node_modules/bootstrap/scss/badge";
@import "../../node_modules/bootstrap/scss/jumbotron";
@import "../../node_modules/bootstrap/scss/alert";
@import "../../node_modules/bootstrap/scss/progress";
@import "../../node_modules/bootstrap/scss/media";
@import "../../node_modules/bootstrap/scss/list-group";
@import "../../node_modules/bootstrap/scss/close";
@import "../../node_modules/bootstrap/scss/toasts";
@import "../../node_modules/bootstrap/scss/modal";
@import "../../node_modules/bootstrap/scss/tooltip";
@import "../../node_modules/bootstrap/scss/popover";
@import "../../node_modules/bootstrap/scss/carousel";
@import "../../node_modules/bootstrap/scss/spinners";
@import "../../node_modules/bootstrap/scss/utilities";
@import "../../node_modules/bootstrap/scss/print";

Loading

0 comments on commit 5efebf4

Please sign in to comment.