waybackmachine
@@ -0,0 +1,474 @@
|
||||
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3.0
|
||||
/* eslint-disable no-var, semi, prefer-arrow-callback, prefer-template */
|
||||
|
||||
/**
|
||||
* Collection of methods for sending analytics events to Archive.org's analytics server.
|
||||
*
|
||||
* These events are used for internal stats and sent (in anonymized form) to Google Analytics.
|
||||
*
|
||||
* @see analytics.md
|
||||
*
|
||||
* @type {Object}
|
||||
*/
|
||||
window.archive_analytics = (function defineArchiveAnalytics() {
|
||||
// keep orignal Date object so as not to be affected by wayback's
|
||||
// hijacking global Date object
|
||||
var Date = window.Date;
|
||||
var ARCHIVE_ANALYTICS_VERSION = 2;
|
||||
var DEFAULT_SERVICE = 'ao_2';
|
||||
var NO_SAMPLING_SERVICE = 'ao_no_sampling'; // sends every event instead of a percentage
|
||||
|
||||
var startTime = new Date();
|
||||
|
||||
/**
|
||||
* @return {Boolean}
|
||||
*/
|
||||
function isPerformanceTimingApiSupported() {
|
||||
return 'performance' in window && 'timing' in window.performance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines how many milliseconds elapsed between the browser starting to parse the DOM and
|
||||
* the current time.
|
||||
*
|
||||
* Uses the Performance API or a fallback value if it's not available.
|
||||
*
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/Performance_API
|
||||
*
|
||||
* @return {Number}
|
||||
*/
|
||||
function getLoadTime() {
|
||||
var start;
|
||||
|
||||
if (isPerformanceTimingApiSupported())
|
||||
start = window.performance.timing.domLoading;
|
||||
else
|
||||
start = startTime.getTime();
|
||||
|
||||
return new Date().getTime() - start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines how many milliseconds elapsed between the user navigating to the page and
|
||||
* the current time.
|
||||
*
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/Performance_API
|
||||
*
|
||||
* @return {Number|null} null if the browser doesn't support the Performance API
|
||||
*/
|
||||
function getNavToDoneTime() {
|
||||
if (!isPerformanceTimingApiSupported())
|
||||
return null;
|
||||
|
||||
return new Date().getTime() - window.performance.timing.navigationStart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs an arithmetic calculation on a string with a number and unit, while maintaining
|
||||
* the unit.
|
||||
*
|
||||
* @param {String} original value to modify, with a unit
|
||||
* @param {Function} doOperation accepts one Number parameter, returns a Number
|
||||
* @returns {String}
|
||||
*/
|
||||
function computeWithUnit(original, doOperation) {
|
||||
var number = parseFloat(original, 10);
|
||||
var unit = original.replace(/(\d*\.\d+)|\d+/, '');
|
||||
|
||||
return doOperation(number) + unit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Computes the default font size of the browser.
|
||||
*
|
||||
* @returns {String|null} computed font-size with units (typically pixels), null if it cannot be computed
|
||||
*/
|
||||
function getDefaultFontSize() {
|
||||
var fontSizeStr;
|
||||
|
||||
if (!('getComputedStyle' in window))
|
||||
return null;
|
||||
|
||||
var style = window.getComputedStyle(document.documentElement);
|
||||
if (!style)
|
||||
return null;
|
||||
|
||||
fontSizeStr = style.fontSize;
|
||||
|
||||
// Don't modify the value if tracking book reader.
|
||||
if (document.querySelector('#BookReader'))
|
||||
return fontSizeStr;
|
||||
|
||||
return computeWithUnit(fontSizeStr, function reverseBootstrapFontSize(number) {
|
||||
// Undo the 62.5% size applied in the Bootstrap CSS.
|
||||
return number * 1.6;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the URL parameters for a given Location
|
||||
* @param {Location}
|
||||
* @return {Object} The URL parameters
|
||||
*/
|
||||
function getParams(location) {
|
||||
if (!location) location = window.location;
|
||||
var vars;
|
||||
var i;
|
||||
var pair;
|
||||
var params = {};
|
||||
var query = location.search;
|
||||
if (!query) return params;
|
||||
vars = query.substring(1).split('&');
|
||||
for (i = 0; i < vars.length; i++) {
|
||||
pair = vars[i].split('=');
|
||||
params[pair[0]] = decodeURIComponent(pair[1]);
|
||||
}
|
||||
return params;
|
||||
}
|
||||
|
||||
function getMetaProp(name) {
|
||||
var metaTag = document.querySelector('meta[property=' + name + ']');
|
||||
return metaTag ? metaTag.getAttribute('content') || null : null;
|
||||
}
|
||||
|
||||
var ArchiveAnalytics = {
|
||||
/**
|
||||
* @type {String|null}
|
||||
*/
|
||||
service: getMetaProp('service'),
|
||||
mediaType: getMetaProp('mediatype'),
|
||||
primaryCollection: getMetaProp('primary_collection'),
|
||||
|
||||
/**
|
||||
* Key-value pairs to send in pageviews (you can read this after a pageview to see what was
|
||||
* sent).
|
||||
*
|
||||
* @type {Object}
|
||||
*/
|
||||
values: {},
|
||||
|
||||
/**
|
||||
* Sends an analytics ping, preferably using navigator.sendBeacon()
|
||||
* @param {Object} values
|
||||
* @param {Function} [onload_callback] (deprecated) callback to invoke once ping to analytics server is done
|
||||
* @param {Boolean} [augment_for_ao_site] (deprecated) if true, add some archive.org site-specific values
|
||||
*/
|
||||
send_ping: function send_ping(values, onload_callback, augment_for_ao_site) {
|
||||
if (typeof window.navigator !== 'undefined' && typeof window.navigator.sendBeacon !== 'undefined')
|
||||
this.send_ping_via_beacon(values);
|
||||
else
|
||||
this.send_ping_via_image(values);
|
||||
},
|
||||
|
||||
/**
|
||||
* Sends a ping via Beacon API
|
||||
* NOTE: Assumes window.navigator.sendBeacon exists
|
||||
* @param {Object} values Tracking parameters to pass
|
||||
*/
|
||||
send_ping_via_beacon: function send_ping_via_beacon(values) {
|
||||
var url = this.generate_tracking_url(values || {});
|
||||
window.navigator.sendBeacon(url);
|
||||
},
|
||||
|
||||
/**
|
||||
* Sends a ping via Image object
|
||||
* @param {Object} values Tracking parameters to pass
|
||||
*/
|
||||
send_ping_via_image: function send_ping_via_image(values) {
|
||||
var url = this.generate_tracking_url(values || {});
|
||||
var loadtime_img = new Image(1, 1);
|
||||
loadtime_img.src = url;
|
||||
loadtime_img.alt = '';
|
||||
},
|
||||
|
||||
/**
|
||||
* Construct complete tracking URL containing payload
|
||||
* @param {Object} params Tracking parameters to pass
|
||||
* @return {String} URL to use for tracking call
|
||||
*/
|
||||
generate_tracking_url: function generate_tracking_url(params) {
|
||||
var baseUrl = '//athena.archive.org/0.gif';
|
||||
var keys;
|
||||
var outputParams = params;
|
||||
var outputParamsArray = [];
|
||||
|
||||
outputParams.service = outputParams.service || this.service || DEFAULT_SERVICE;
|
||||
|
||||
// Build array of querystring parameters
|
||||
keys = Object.keys(outputParams);
|
||||
keys.forEach(function keyIteration(key) {
|
||||
outputParamsArray.push(encodeURIComponent(key) + '=' + encodeURIComponent(outputParams[key]));
|
||||
});
|
||||
outputParamsArray.push('version=' + ARCHIVE_ANALYTICS_VERSION);
|
||||
outputParamsArray.push('count=' + (keys.length + 2)); // Include `version` and `count` in count
|
||||
|
||||
return baseUrl + '?' + outputParamsArray.join('&');
|
||||
},
|
||||
|
||||
/**
|
||||
* @param {int} page Page number
|
||||
*/
|
||||
send_scroll_fetch_event: function send_scroll_fetch_event(page) {
|
||||
var additionalValues = { ev: page };
|
||||
var loadTime = getLoadTime();
|
||||
var navToDoneTime = getNavToDoneTime();
|
||||
if (loadTime) additionalValues.loadtime = loadTime;
|
||||
if (navToDoneTime) additionalValues.nav_to_done_ms = navToDoneTime;
|
||||
this.send_event('page_action', 'scroll_fetch', location.pathname, additionalValues);
|
||||
},
|
||||
|
||||
send_scroll_fetch_base_event: function send_scroll_fetch_base_event() {
|
||||
var additionalValues = {};
|
||||
var loadTime = getLoadTime();
|
||||
var navToDoneTime = getNavToDoneTime();
|
||||
if (loadTime) additionalValues.loadtime = loadTime;
|
||||
if (navToDoneTime) additionalValues.nav_to_done_ms = navToDoneTime;
|
||||
this.send_event('page_action', 'scroll_fetch_base', location.pathname, additionalValues);
|
||||
},
|
||||
|
||||
/**
|
||||
* @param {Object} [options]
|
||||
* @param {String} [options.mediaType]
|
||||
* @param {String} [options.mediaLanguage]
|
||||
* @param {String} [options.page] The path portion of the page URL
|
||||
*/
|
||||
send_pageview: function send_pageview(options) {
|
||||
var settings = options || {};
|
||||
|
||||
var defaultFontSize;
|
||||
var loadTime = getLoadTime();
|
||||
var mediaType = settings.mediaType;
|
||||
var primaryCollection = settings.primaryCollection;
|
||||
var page = settings.page;
|
||||
var navToDoneTime = getNavToDoneTime();
|
||||
|
||||
/**
|
||||
* @return {String}
|
||||
*/
|
||||
function get_locale() {
|
||||
if (navigator) {
|
||||
if (navigator.language)
|
||||
return navigator.language;
|
||||
|
||||
else if (navigator.browserLanguage)
|
||||
return navigator.browserLanguage;
|
||||
|
||||
else if (navigator.systemLanguage)
|
||||
return navigator.systemLanguage;
|
||||
|
||||
else if (navigator.userLanguage)
|
||||
return navigator.userLanguage;
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
defaultFontSize = getDefaultFontSize();
|
||||
|
||||
// Set field values
|
||||
this.values.kind = 'pageview';
|
||||
this.values.timediff = (new Date().getTimezoneOffset()/60)*(-1); // *timezone* diff from UTC
|
||||
this.values.locale = get_locale();
|
||||
this.values.referrer = (document.referrer == '' ? '-' : document.referrer);
|
||||
|
||||
if (loadTime)
|
||||
this.values.loadtime = loadTime;
|
||||
|
||||
if (navToDoneTime)
|
||||
this.values.nav_to_done_ms = navToDoneTime;
|
||||
|
||||
if (settings.trackingId) {
|
||||
this.values.ga_tid = settings.trackingId;
|
||||
}
|
||||
|
||||
/* START CUSTOM DIMENSIONS */
|
||||
if (defaultFontSize)
|
||||
this.values.iaprop_fontSize = defaultFontSize;
|
||||
|
||||
if ('devicePixelRatio' in window)
|
||||
this.values.iaprop_devicePixelRatio = window.devicePixelRatio;
|
||||
|
||||
if (mediaType)
|
||||
this.values.iaprop_mediaType = mediaType;
|
||||
|
||||
if (settings.mediaLanguage) {
|
||||
this.values.iaprop_mediaLanguage = settings.mediaLanguage;
|
||||
}
|
||||
|
||||
if (primaryCollection) {
|
||||
this.values.iaprop_primaryCollection = primaryCollection;
|
||||
}
|
||||
/* END CUSTOM DIMENSIONS */
|
||||
|
||||
if (page)
|
||||
this.values.page = page;
|
||||
|
||||
this.send_ping(this.values);
|
||||
},
|
||||
|
||||
/**
|
||||
* Sends a tracking "Event".
|
||||
* @param {string} category
|
||||
* @param {string} action
|
||||
* @param {string} label
|
||||
* @param {Object} additionalEventParams
|
||||
*/
|
||||
send_event: function send_event(
|
||||
category,
|
||||
action,
|
||||
label,
|
||||
additionalEventParams
|
||||
) {
|
||||
if (!label) label = window.location.pathname;
|
||||
if (!additionalEventParams) additionalEventParams = {};
|
||||
if (additionalEventParams.mediaLanguage) {
|
||||
additionalEventParams.ga_cd4 = additionalEventParams.mediaLanguage;
|
||||
delete additionalEventParams.mediaLanguage;
|
||||
}
|
||||
var eventParams = Object.assign(
|
||||
{
|
||||
kind: 'event',
|
||||
ec: category,
|
||||
ea: action,
|
||||
el: label,
|
||||
cache_bust: Math.random(),
|
||||
},
|
||||
additionalEventParams
|
||||
);
|
||||
this.send_ping(eventParams);
|
||||
},
|
||||
|
||||
/**
|
||||
* Sends every event instead of a small percentage.
|
||||
*
|
||||
* Use this sparingly as it can generate a lot of events.
|
||||
*
|
||||
* @param {string} category
|
||||
* @param {string} action
|
||||
* @param {string} label
|
||||
* @param {Object} additionalEventParams
|
||||
*/
|
||||
send_event_no_sampling: function send_event_no_sampling(
|
||||
category,
|
||||
action,
|
||||
label,
|
||||
additionalEventParams
|
||||
) {
|
||||
var extraParams = additionalEventParams || {};
|
||||
extraParams.service = NO_SAMPLING_SERVICE;
|
||||
this.send_event(category, action, label, extraParams);
|
||||
},
|
||||
|
||||
/**
|
||||
* @param {Object} options see this.send_pageview options
|
||||
*/
|
||||
send_pageview_on_load: function send_pageview_on_load(options) {
|
||||
var self = this;
|
||||
window.addEventListener('load', function send_pageview_with_options() {
|
||||
self.send_pageview(options);
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Handles tracking events passed in URL.
|
||||
* Assumes category and action values are separated by a "|" character.
|
||||
* NOTE: Uses the unsampled analytics property. Watch out for future high click links!
|
||||
* @param {Location}
|
||||
*/
|
||||
process_url_events: function process_url_events(location) {
|
||||
var eventValues;
|
||||
var actionValue;
|
||||
var eventValue = getParams(location).iax;
|
||||
if (!eventValue) return;
|
||||
eventValues = eventValue.split('|');
|
||||
actionValue = eventValues.length >= 1 ? eventValues[1] : '';
|
||||
this.send_event_no_sampling(
|
||||
eventValues[0],
|
||||
actionValue,
|
||||
window.location.pathname
|
||||
);
|
||||
},
|
||||
|
||||
/**
|
||||
* Attaches handlers for event tracking.
|
||||
*
|
||||
* To enable click tracking for a link, add a `data-event-click-tracking`
|
||||
* attribute containing the Google Analytics Event Category and Action, separated
|
||||
* by a vertical pipe (|).
|
||||
* e.g. `<a href="foobar" data-event-click-tracking="TopNav|FooBar">`
|
||||
*
|
||||
* To enable form submit tracking, add a `data-event-form-tracking` attribute
|
||||
* to the `form` tag.
|
||||
* e.g. `<form data-event-form-tracking="TopNav|SearchForm" method="GET">`
|
||||
*
|
||||
* Additional tracking options can be added via a `data-event-tracking-options`
|
||||
* parameter. This parameter, if included, should be a JSON string of the parameters.
|
||||
* Valid parameters are:
|
||||
* - service {string}: Corresponds to the Google Analytics property data values flow into
|
||||
*/
|
||||
set_up_event_tracking: function set_up_event_tracking() {
|
||||
var self = this;
|
||||
var clickTrackingAttributeName = 'event-click-tracking';
|
||||
var formTrackingAttributeName = 'event-form-tracking';
|
||||
var trackingOptionsAttributeName = 'event-tracking-options';
|
||||
|
||||
function handleAction(event, attributeName) {
|
||||
var selector = '[data-' + attributeName + ']';
|
||||
var eventTarget = event.target;
|
||||
if (!eventTarget) return;
|
||||
var target = eventTarget.closest(selector);
|
||||
if (!target) return;
|
||||
var categoryAction;
|
||||
var categoryActionParts;
|
||||
var options;
|
||||
categoryAction = target.dataset[toCamelCase(attributeName)];
|
||||
if (!categoryAction) return;
|
||||
categoryActionParts = categoryAction.split('|');
|
||||
options = target.dataset[toCamelCase(trackingOptionsAttributeName)];
|
||||
options = options ? JSON.parse(options) : {};
|
||||
self.send_event(
|
||||
categoryActionParts[0],
|
||||
categoryActionParts[1],
|
||||
categoryActionParts[2] || window.location.pathname,
|
||||
options.service ? { service: options.service } : {}
|
||||
);
|
||||
}
|
||||
|
||||
function toCamelCase(str) {
|
||||
return str.replace(/\W+(.)/g, function (match, chr) {
|
||||
return chr.toUpperCase();
|
||||
});
|
||||
};
|
||||
|
||||
document.addEventListener('click', function(e) {
|
||||
handleAction(e, clickTrackingAttributeName);
|
||||
});
|
||||
|
||||
document.addEventListener('submit', function(e) {
|
||||
handleAction(e, formTrackingAttributeName);
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* @returns {Object[]}
|
||||
*/
|
||||
get_data_packets: function get_data_packets() {
|
||||
return [this.values];
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a tracking image for tracking JS compatibility.
|
||||
*
|
||||
* @param {string} type The type value for track_js_case in query params for 0.gif
|
||||
*/
|
||||
create_tracking_image: function create_tracking_image(type) {
|
||||
this.send_ping_via_image({
|
||||
cache_bust: Math.random(),
|
||||
kind: 'track_js',
|
||||
track_js_case: type,
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
return ArchiveAnalytics;
|
||||
}());
|
||||
// @license-end
|
||||
@@ -0,0 +1,527 @@
|
||||
:root {
|
||||
--wm-toolbar-height: 65px;
|
||||
}
|
||||
#wm-ipp-base {
|
||||
height:65px;/* initial height just in case js code fails */
|
||||
padding:0;
|
||||
margin:0;
|
||||
border:none;
|
||||
background:none transparent;
|
||||
}
|
||||
#wm-ipp {
|
||||
z-index: 2147483647;
|
||||
}
|
||||
#wm-ipp, #wm-ipp * {
|
||||
font-family:Lucida Grande, Helvetica, Arial, sans-serif;
|
||||
font-size:12px;
|
||||
line-height:1.2;
|
||||
letter-spacing:0;
|
||||
width:auto;
|
||||
height:auto;
|
||||
max-width:none;
|
||||
max-height:none;
|
||||
min-width:0 !important;
|
||||
min-height:0;
|
||||
outline:none;
|
||||
float:none;
|
||||
text-align:left;
|
||||
border:none;
|
||||
color: #000;
|
||||
text-indent: 0;
|
||||
position: initial;
|
||||
background: none;
|
||||
}
|
||||
#wm-ipp div, #wm-ipp canvas {
|
||||
display: block;
|
||||
}
|
||||
#wm-ipp div, #wm-ipp tr, #wm-ipp td, #wm-ipp a, #wm-ipp form {
|
||||
padding:0;
|
||||
margin:0;
|
||||
border:none;
|
||||
border-radius:0;
|
||||
background-color:transparent;
|
||||
background-image:none;
|
||||
/*z-index:2147483640;*/
|
||||
height:auto;
|
||||
}
|
||||
#wm-ipp table {
|
||||
border:none;
|
||||
border-collapse:collapse;
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:auto;
|
||||
font-size:inherit;
|
||||
}
|
||||
#wm-ipp form input {
|
||||
padding:1px !important;
|
||||
height:auto;
|
||||
display:inline;
|
||||
margin:0;
|
||||
color: #000;
|
||||
background: none #fff;
|
||||
border: 1px solid #666;
|
||||
}
|
||||
#wm-ipp form input[type=submit] {
|
||||
padding:0 8px !important;
|
||||
margin:1px 0 1px 5px !important;
|
||||
width:auto !important;
|
||||
border: 1px solid #000 !important;
|
||||
background: #fff !important;
|
||||
color: #000 !important;
|
||||
}
|
||||
#wm-ipp form input[type=submit]:hover {
|
||||
background: #eee !important;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
#wm-ipp form input[type=submit]:active {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
#wm-ipp a {
|
||||
display: inline;
|
||||
}
|
||||
#wm-ipp a:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
#wm-ipp a.wm-btn:hover {
|
||||
text-decoration:none;
|
||||
color:#ff0 !important;
|
||||
}
|
||||
#wm-ipp a.wm-btn:hover span {
|
||||
color:#ff0 !important;
|
||||
}
|
||||
#wm-ipp #wm-ipp-inside {
|
||||
margin: 0 6px;
|
||||
border:5px solid #000;
|
||||
border-top:none;
|
||||
background-color:rgba(255,255,255,0.9);
|
||||
-moz-box-shadow:1px 1px 4px #333;
|
||||
-webkit-box-shadow:1px 1px 4px #333;
|
||||
box-shadow:1px 1px 4px #333;
|
||||
border-radius:0 0 8px 8px;
|
||||
}
|
||||
/* selectors are intentionally verbose to ensure priority */
|
||||
#wm-ipp #wm-logo {
|
||||
padding:0 10px;
|
||||
vertical-align:middle;
|
||||
min-width:100px;
|
||||
flex: 0 0 100px;
|
||||
}
|
||||
#wm-ipp .c {
|
||||
padding-left: 4px;
|
||||
}
|
||||
#wm-ipp .c .u {
|
||||
margin-top: 4px !important;
|
||||
}
|
||||
#wm-ipp .n {
|
||||
padding:0 0 0 5px !important;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
#wm-ipp .n a {
|
||||
text-decoration:none;
|
||||
color:#33f;
|
||||
font-weight:bold;
|
||||
}
|
||||
#wm-ipp .n .b {
|
||||
padding:0 6px 0 0 !important;
|
||||
text-align:right !important;
|
||||
overflow:visible;
|
||||
white-space:nowrap;
|
||||
color:#99a;
|
||||
vertical-align:middle;
|
||||
}
|
||||
#wm-ipp .n .y .b {
|
||||
padding:0 6px 2px 0 !important;
|
||||
}
|
||||
#wm-ipp .n .c {
|
||||
background:#000;
|
||||
color:#ff0;
|
||||
font-weight:bold;
|
||||
padding:0 !important;
|
||||
text-align:center;
|
||||
}
|
||||
#wm-ipp .n .d span.ta {
|
||||
display:inline-block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-color: transparent #99a;
|
||||
border-style: solid;
|
||||
}
|
||||
#wm-ipp .n .d .b span.ta {
|
||||
border-width: 8px 14px 8px 0;
|
||||
}
|
||||
#wm-ipp .n .d .f span.ta {
|
||||
border-width: 8px 0 8px 14px;
|
||||
}
|
||||
#wm-ipp .n .d a span.ta {
|
||||
border-color: transparent #33f;
|
||||
}
|
||||
#wm-ipp .n .d a span.ta:hover {
|
||||
border-color: transparent #77f;
|
||||
}
|
||||
#wm-ipp.hi .n td.c {
|
||||
color:#ec008c;
|
||||
}
|
||||
#wm-ipp .n td.f {
|
||||
padding:0 0 0 6px !important;
|
||||
text-align:left !important;
|
||||
overflow:visible;
|
||||
white-space:nowrap;
|
||||
color:#99a;
|
||||
vertical-align:middle;
|
||||
}
|
||||
#wm-ipp .n tr.m td {
|
||||
text-transform:uppercase;
|
||||
white-space:nowrap;
|
||||
padding:2px 0;
|
||||
}
|
||||
#wm-ipp .c .s {
|
||||
padding:0 5px 0 0 !important;
|
||||
vertical-align:bottom;
|
||||
}
|
||||
#wm-ipp #wm-nav-captures {
|
||||
white-space: nowrap;
|
||||
}
|
||||
#wm-ipp .c .s a.t {
|
||||
color:#33f;
|
||||
font-weight:bold;
|
||||
line-height: 1.8;
|
||||
}
|
||||
#wm-ipp .c .s div.r {
|
||||
color: #666;
|
||||
font-size:9px;
|
||||
white-space:nowrap;
|
||||
}
|
||||
#wm-ipp .c .k {
|
||||
padding-bottom:1px;
|
||||
}
|
||||
#wm-ipp .c .s {
|
||||
padding:0 5px 2px 0 !important;
|
||||
}
|
||||
#wm-ipp td#displayMonthEl {
|
||||
padding: 2px 0 !important;
|
||||
}
|
||||
#wm-ipp td#displayYearEl {
|
||||
padding: 0 0 2px 0 !important;
|
||||
}
|
||||
|
||||
div#wm-ipp-sparkline {
|
||||
position:relative;/* for positioning markers */
|
||||
white-space:nowrap;
|
||||
background-color:#fff;
|
||||
cursor:pointer;
|
||||
line-height:0.9;
|
||||
}
|
||||
#sparklineImgId, #wm-sparkline-canvas {
|
||||
position:relative;
|
||||
z-index:9012;
|
||||
max-width:none;
|
||||
}
|
||||
#wm-ipp-sparkline div.yt {
|
||||
position:absolute;
|
||||
z-index:9010 !important;
|
||||
background-color:#ff0 !important;
|
||||
top: 0;
|
||||
}
|
||||
#wm-ipp-sparkline div.mt {
|
||||
position:absolute;
|
||||
z-index:9013 !important;
|
||||
background-color:#ec008c !important;
|
||||
top: 0;
|
||||
}
|
||||
#wm-ipp .r {
|
||||
margin-left: 4px;
|
||||
}
|
||||
#wm-ipp .r a {
|
||||
color:#33f;
|
||||
border:none;
|
||||
position:relative;
|
||||
background-color:transparent;
|
||||
background-repeat:no-repeat !important;
|
||||
background-position:100% 100% !important;
|
||||
text-decoration: none;
|
||||
}
|
||||
#wm-ipp #wm-capinfo {
|
||||
/* prevents notice div background from sticking into round corners of
|
||||
#wm-ipp-inside */
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
#wm-ipp #wm-capinfo .c-logo {
|
||||
display:block;
|
||||
float:left;
|
||||
margin-right:3px;
|
||||
width:90px;
|
||||
min-height:90px;
|
||||
max-height: 290px;
|
||||
border-radius:45px;
|
||||
overflow:hidden;
|
||||
background-position:50%;
|
||||
background-size:auto 90px;
|
||||
box-shadow: 0 0 2px 2px rgba(208,208,208,128) inset;
|
||||
}
|
||||
#wm-ipp #wm-capinfo .c-logo span {
|
||||
display:inline-block;
|
||||
}
|
||||
#wm-ipp #wm-capinfo .c-logo img {
|
||||
height:90px;
|
||||
position:relative;
|
||||
left:-50%;
|
||||
}
|
||||
#wm-ipp #wm-capinfo .wm-title {
|
||||
font-size:130%;
|
||||
}
|
||||
#wm-ipp #wm-capinfo a.wm-selector {
|
||||
display:inline-block;
|
||||
color: #aaa;
|
||||
text-decoration:none !important;
|
||||
padding: 2px 8px;
|
||||
}
|
||||
#wm-ipp #wm-capinfo a.wm-selector.selected {
|
||||
background-color:#666;
|
||||
}
|
||||
#wm-ipp #wm-capinfo a.wm-selector:hover {
|
||||
color: #fff;
|
||||
}
|
||||
#wm-ipp #wm-capinfo.notice-only #wm-capinfo-collected-by,
|
||||
#wm-ipp #wm-capinfo.notice-only #wm-capinfo-timestamps {
|
||||
display: none;
|
||||
}
|
||||
#wm-ipp #wm-capinfo #wm-capinfo-notice .wm-capinfo-content {
|
||||
background-color:#ff0;
|
||||
padding:5px;
|
||||
font-size:14px;
|
||||
text-align:center;
|
||||
}
|
||||
#wm-ipp #wm-capinfo #wm-capinfo-notice .wm-capinfo-content * {
|
||||
font-size:14px;
|
||||
text-align:center;
|
||||
}
|
||||
#wm-ipp #wm-expand {
|
||||
right: 1px;
|
||||
bottom: -1px;
|
||||
color: #ffffff;
|
||||
background-color: #666 !important;
|
||||
padding:0 5px 0 3px !important;
|
||||
border-radius: 3px 3px 0 0 !important;
|
||||
}
|
||||
#wm-ipp #wm-expand span {
|
||||
color: #ffffff;
|
||||
}
|
||||
#wm-ipp #wm-expand #wm-expand-icon {
|
||||
display: inline-block;
|
||||
transition: transform 0.5s;
|
||||
transform-origin: 50% 45%;
|
||||
}
|
||||
#wm-ipp #wm-expand.wm-open #wm-expand-icon {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
#wm-ipp #wmtb {
|
||||
text-align:right;
|
||||
}
|
||||
#wm-ipp #wmtb #wmtbURL {
|
||||
width: calc(100% - 45px);
|
||||
}
|
||||
#wm-ipp #wm-graph-anchor {
|
||||
border-right:1px solid #ccc;
|
||||
}
|
||||
/* time coherence */
|
||||
html.wb-highlight {
|
||||
box-shadow: inset 0 0 0 3px #a50e3a !important;
|
||||
}
|
||||
.wb-highlight {
|
||||
outline: 3px solid #a50e3a !important;
|
||||
}
|
||||
#wm-ipp-print {
|
||||
display:none !important;
|
||||
}
|
||||
@media print {
|
||||
#wm-ipp-base {
|
||||
display:none !important;
|
||||
}
|
||||
#wm-ipp-print {
|
||||
display:block !important;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
@media (max-width:414px) {
|
||||
#wm-ipp .xxs {
|
||||
display:none !important;
|
||||
}
|
||||
}
|
||||
@media (min-width:1055px) {
|
||||
#wm-ipp #wm-graph-anchor {
|
||||
display:block !important;
|
||||
}
|
||||
}
|
||||
@media (max-width:1054px) {
|
||||
#wm-ipp #wm-graph-anchor {
|
||||
display:none !important;
|
||||
}
|
||||
}
|
||||
@media (max-width:1163px) {
|
||||
#wm-logo {
|
||||
display:none !important;
|
||||
}
|
||||
}
|
||||
|
||||
#wm-btns {
|
||||
white-space: nowrap;
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
#wm-btns #wm-save-snapshot-open {
|
||||
margin-right: 7px;
|
||||
top: -6px;
|
||||
}
|
||||
|
||||
#wm-btns #wm-sign-in {
|
||||
box-sizing: content-box;
|
||||
display: none;
|
||||
margin-right: 7px;
|
||||
top: -8px;
|
||||
|
||||
/*
|
||||
round border around sign in button
|
||||
*/
|
||||
border: 2px #000 solid;
|
||||
border-radius: 14px;
|
||||
padding-right: 2px;
|
||||
padding-bottom: 2px;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
}
|
||||
|
||||
#wm-btns #wm-sign-in>.iconochive-person {
|
||||
font-size: 12.5px;
|
||||
}
|
||||
|
||||
#wm-save-snapshot-open > .iconochive-web {
|
||||
color:#000;
|
||||
font-size:160%;
|
||||
}
|
||||
|
||||
#wm-ipp #wm-share {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
#wm-share > #wm-screenshot {
|
||||
display: inline-block;
|
||||
margin-right: 3px;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#wm-screenshot > .iconochive-image {
|
||||
color:#000;
|
||||
font-size:160%;
|
||||
}
|
||||
|
||||
#wm-share > #wm-video {
|
||||
display: inline-block;
|
||||
margin-right: 3px;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#wm-video > .iconochive-movies {
|
||||
color: #000;
|
||||
display: inline-block;
|
||||
font-size: 150%;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#wm-btns #wm-save-snapshot-in-progress {
|
||||
display: none;
|
||||
font-size:160%;
|
||||
opacity: 0.5;
|
||||
position: relative;
|
||||
margin-right: 7px;
|
||||
top: -5px;
|
||||
}
|
||||
|
||||
#wm-btns #wm-save-snapshot-success {
|
||||
display: none;
|
||||
color: green;
|
||||
position: relative;
|
||||
top: -7px;
|
||||
}
|
||||
|
||||
#wm-btns #wm-save-snapshot-fail {
|
||||
display: none;
|
||||
color: red;
|
||||
position: relative;
|
||||
top: -7px;
|
||||
}
|
||||
|
||||
.wm-icon-screen-shot {
|
||||
background: url("../images/web-screenshot.svg") no-repeat !important;
|
||||
background-size: contain !important;
|
||||
width: 22px !important;
|
||||
height: 19px !important;
|
||||
|
||||
display: inline-block;
|
||||
}
|
||||
#donato {
|
||||
/* transition effect is disable so as to simplify height adjustment */
|
||||
/*transition: height 0.5s;*/
|
||||
height: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-bottom: 1px solid #999 !important;
|
||||
}
|
||||
body.wm-modal {
|
||||
height: auto !important;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
#donato #donato-base {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
/*bottom: 0;*/
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
z-index: 2147483639;
|
||||
}
|
||||
body.wm-modal #donato #donato-base {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 2147483640;
|
||||
}
|
||||
|
||||
.wb-autocomplete-suggestions {
|
||||
font-family: Lucida Grande, Helvetica, Arial, sans-serif;
|
||||
font-size: 12px;
|
||||
text-align: left;
|
||||
cursor: default;
|
||||
border: 1px solid #ccc;
|
||||
border-top: 0;
|
||||
background: #fff;
|
||||
box-shadow: -1px 1px 3px rgba(0,0,0,.1);
|
||||
position: absolute;
|
||||
display: none;
|
||||
z-index: 2147483647;
|
||||
max-height: 254px;
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wb-autocomplete-suggestion {
|
||||
position: relative;
|
||||
padding: 0 .6em;
|
||||
line-height: 23px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 1.02em;
|
||||
color: #333;
|
||||
}
|
||||
.wb-autocomplete-suggestion b {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wb-autocomplete-suggestion.selected {
|
||||
background: #f0f0f0;
|
||||
}
|
||||
@@ -0,0 +1,189 @@
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqJ2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqt2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqB2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqF2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoq92nA.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwf7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMw77I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwX7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwT7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwr7Iw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwf7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMw77I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwX7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwT7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/lora/v17/0QIvMX1D_JOuMwr7Iw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXk-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXA-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXc-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXs-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXo-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://web.archive.org/web/20210625211527im_/https://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXQ-oA.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:27 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:40 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.559
|
||||
exclusion.robots: 0.017
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.009
|
||||
cdx.remote: 5.629
|
||||
LoadShardBlock: 367.902 (6)
|
||||
PetaboxLoader3.datanode: 360.879 (8)
|
||||
PetaboxLoader3.resolve: 122.495 (3)
|
||||
load_resource: 160.233 (2)
|
||||
*/
|
||||
@@ -0,0 +1,38 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
/*
|
||||
By Osvaldas Valutis, www.osvaldas.info
|
||||
Available for use under the MIT License
|
||||
*/
|
||||
|
||||
|
||||
|
||||
;(function(e,t,n,r){e.fn.doubleTapToGo=function(r){if(!("ontouchstart"in t)&&!navigator.msMaxTouchPoints&&!navigator.userAgent.toLowerCase().match(/windows phone os 7/i))return false;this.each(function(){var t=false;e(this).on("click",function(n){var r=e(this);if(r[0]!=t[0]){n.preventDefault();t=r}});e(n).on("click touchstart MSPointerDown",function(n){var r=true,i=e(n.target).parents();for(var s=0;s<i.length;s++)if(i[s]==t[0])r=false;if(r)t=false})});return this}})(jQuery,window,document);
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:29 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:42 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.481
|
||||
exclusion.robots: 0.017
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.009
|
||||
cdx.remote: 4.653
|
||||
LoadShardBlock: 87.616 (3)
|
||||
PetaboxLoader3.datanode: 101.178 (4)
|
||||
load_resource: 114.154
|
||||
PetaboxLoader3.resolve: 84.837
|
||||
*/
|
||||
@@ -0,0 +1,48 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
window.wpcom=window.wpcom||{};window._stq=window._stq||[];function st_go(a){window._stq.push(['view',a]);};function linktracker_init(b,p){window._stq.push(['clickTrackerInit',b,p]);};window.wpcom.stats=(function(){var _clickTracker=(function(){var _blog,_post;var _addEvent=function(el,t,cb){if('function'===typeof el.addEventListener){el.addEventListener(t,cb);}else if('object'===typeof el.attachEvent){el.attachEvent('on'+t,cb);}};var _getClickTarget=function(e){if('object'===typeof e&&e.target){return e.target;}else{return window.event.srcElement;}};var _clickTrack=function(e){var d=0;if('object'===typeof InstallTrigger)d=100;if(7===_getIEVer())d=100;_processLink(_getClickTarget(e),d);};var _contextTrack=function(e){_processLink(_getClickTarget(e),0);};var _isSameHost=function(a){var l=document.location;if(l.host===a.host)return true;if(''===a.host)return true;if(l.protocol===a.protocol&&l.host===a.hostname){if('http:'===l.protocol&&l.host+':80'===a.host)return true;if('https:'===l.protocol&&l.host+':443'===a.host)return true;};return false;};var _processLink=function(a,d){try{if('object'!==typeof a)return;while('A'!==a.nodeName){if('undefined'===typeof a.nodeName)return;if('object'!==typeof a.parentNode)return;a=a.parentNode;};if(_isSameHost(a))return;if('javascript:'===a.protocol)return;window._stq.push(['click',{s:'2',u:a.href,r:('undefined'!==typeof a.rel)?a.rel:'0',b:('undefined'!==typeof _blog)?_blog:'0',p:('undefined'!==typeof _post)?_post:'0'}]);if(d){var now=new Date();var end=now.getTime()+d;while(true){now=new Date();if(now.getTime()>end){break}}}}catch(e){}};var API={init:function(b,p){_blog=b;_post=p;if(document.body){_addEvent(document.body,'click',_clickTrack);_addEvent(document.body,'contextmenu',_contextTrack);}else if(document){_addEvent(document,'click',_clickTrack);_addEvent(document,'contextmenu',_contextTrack);}}};return API;})();var _getIEVer=function(){var v=0;if('object'===typeof navigator&&navigator.appName=='Microsoft Internet Explorer'){var m=navigator.userAgent.match(/MSIE ([0-9]{1,})[\.0-9]{0,}/);if(null!==m){v=parseInt(m[1]);}};return v;};var _serialize=function(o){var p,q=[];for(p in o){if(o.hasOwnProperty(p)){q.push(encodeURIComponent(p)+'='+encodeURIComponent(o[p]));}};return q.join('&');};var _loadGif=function(t,q,id){var i=new Image();i.src=document.location.protocol+'//web.archive.org/web/20210625211621/https://pixel.wp.com/'+t+'?'+q+'&rand='+Math.random();i.alt=":)";i.width='6';i.height='5';if('string'===typeof id&&document.body){i.id=id;document.body.appendChild(i);}};var _computePerformance=function(o){var conn=navigator.connection||navigator.mozConnection||navigator.webkitConnection;if(conn){if(conn.effectiveType){o.conn_type=conn.effectiveType;}
|
||||
if(conn.rtt){o.conn_rtt=conn.rtt;}
|
||||
if(conn.downlink){o.conn_downlink=conn.downlink;}}
|
||||
if(window.performance){var performance=window.performance;if(window.PerformanceNavigationTiming){var navigationTiming=performance.getEntriesByType('navigation')[0];if(navigationTiming.nextHopProtocol){o.protocol=navigationTiming.nextHopProtocol;}}
|
||||
if(performance.timing&&performance.navigation&&(performance.navigation.type===0||performance.navigation.type===1)){var t=performance.timing;o.dns_latency=Math.round(t.domainLookupEnd-t.domainLookupStart);o.conn_latency=Math.round(t.connectEnd-t.connectStart);o.resp_latency=Math.round(t.responseStart-t.requestStart);o.resp_duration=Math.round(t.responseEnd-t.responseStart);o.dom_interact=Math.round(t.domInteractive-t.navigationStart);o.dom_load=Math.round(t.domContentLoadedEventStart-t.navigationStart);if(t.loadEventStart>0){o.page_load=Math.round(t.loadEventStart-t.navigationStart);}}
|
||||
var resources=performance.getEntriesByType('resource');if(resources.length>0){var cssFiles=0,jsFiles=0,imgFiles=0,fontFiles=0,otherFiles=0,cssDuration=0,jsDuration=0,imgDuration=0,fontDuration=0,otherDuration=0,http1Files=0,http2Files=0,sslFiles=0,originFiles=0,externalFiles=0;for(var i=0;i<resources.length;i++){var resource=resources[i];if(resource.nextHopProtocol){if(resource.nextHopProtocol.startsWith('http/1')){http1Files+=1;}else if('h2'===resource.nextHopProtocol){http2Files+=1;}
|
||||
if(resource.name.startsWith('https')){sslFiles+=1;}}else{http1Files+=1;if(resource.name.startsWith('https')){sslFiles+=1;}}
|
||||
if(resource.name.indexOf(location.hostname)>=0){originFiles+=1;}else{externalFiles+=1;}
|
||||
var extension;if(resource.name.indexOf('fonts.googleapis.com/css')>=0){extension='css';}else{extension=resource.name.split(/\#|\?/)[0].split('.').pop();}
|
||||
if(extension){extension=extension.toLowerCase();if('js'===extension){jsDuration+=resource.duration;jsFiles+=1;}else if('css'===extension){cssDuration+=resource.duration;cssFiles+=1;}else if('gif'===extension||'jpg'===extension||'jpeg'===extension||'png'===extension){imgDuration+=resource.duration;imgFiles+=1;}else if('woff'===extension||'woff2'===extension||'ttf'===extension||'otf'===extension){fontDuration+=resource.duration;fontFiles+=1;}else{otherDuration+=resource.duration;otherFiles+=1;}}else{otherDuration+=resource.duration;otherFiles+=1;}}
|
||||
o.files_origin=originFiles;o.files_ext=externalFiles;o.files_ssl=sslFiles;o.files_http1=http1Files;o.files_http2=http2Files;o.files_js=jsFiles;o.files_css=cssFiles;o.files_img=imgFiles;o.files_font=fontFiles;o.files_other=otherFiles;o.duration_js=Math.round(jsDuration);o.duration_css=Math.round(cssDuration);o.duration_img=Math.round(imgDuration);o.duration_font=Math.round(fontDuration);o.duration_other=Math.round(otherDuration);}
|
||||
var paintEntries=performance.getEntriesByType('paint');if(paintEntries===undefined){return;}
|
||||
for(var i=0;i<paintEntries.length;i++){var performanceEntry=paintEntries[i];if('first-paint'===performanceEntry.name){o.first_paint=Math.round(performanceEntry.startTime);}else if('first-contentful-paint'===performanceEntry.name){o.first_cf_paint=Math.round(performanceEntry.startTime);}}}};var STQ=function(q){this.a=1;if(q&&q.length){for(var i=0;i<q.length;i++){this.push(q[i]);}}};STQ.prototype.push=function(args){if(args){if("object"===typeof args&&args.length){var cmd=args.splice(0,1);if(API[cmd])API[cmd].apply(null,args);}else if("function"===typeof args){args();}}};var initQueue=function(){if(!window._stq.a){window._stq=new STQ(window._stq);}};var newAnonId=function(){var randomBytesLength=18,randomBytes=[];if(window.crypto&&window.crypto.getRandomValues){randomBytes=new Uint8Array(randomBytesLength);window.crypto.getRandomValues(randomBytes);}else{for(var i=0;i<randomBytesLength;++i){randomBytes[i]=Math.floor(Math.random()*256);}}
|
||||
return btoa(String.fromCharCode.apply(String,randomBytes));};var _initTracks=function(o){o._ui=newAnonId();o._ut='anon';o._en='jetpack_pageview_timing';var date=new Date();o._ts=date.getTime();o._tz=date.getTimezoneOffset()/60;var nav=window.navigator;var screen=window.screen;o._lg=nav.language;o._pf=nav.platform;o._ht=screen.height;o._wd=screen.width;var sx=(window.pageXOffset!==undefined)?window.pageXOffset:(document.documentElement||document.body.parentNode||document.body).scrollLeft;var sy=(window.pageYOffset!==undefined)?window.pageYOffset:(document.documentElement||document.body.parentNode||document.body).scrollTop;o._sx=(sx!==undefined)?sx:0;o._sy=(sy!==undefined)?sy:0;if(document.location!==undefined){o._dl=document.location.toString();}
|
||||
if(document.referrer!==undefined){o._dr=document.referrer;}};var API={view:function(o){o.host=document.location.host;o.ref=document.referrer;o.fcp=getFirstContentfulPaint();_loadGif('g.gif',_serialize(o),'wpstats');if(window.performance&&Math.random()<0.005){window.addEventListener('load',function(event){window.setTimeout(API.samplePerformance.bind(this,o.blog,o.post,o.j.split(':').reverse()[0]),100);});}},click:function(o){_loadGif('c.gif',_serialize(o),false);},clickTrackerInit:function(b,p){_clickTracker.init(b,p);},samplePerformance:function(blogId,postId,jetpackVersion){if(!window.performance){return;}
|
||||
var o={blog:blogId,post:postId,blog_id:blogId,jetpack_version:jetpackVersion};_initTracks(o);_computePerformance(o);_loadGif('t.gif',_serialize(o));}};var isDocumentHidden=function(){return typeof document.hidden!=="undefined"&&document.hidden;};var onDocumentVisibilityChange=function(){if(!document.hidden){document.removeEventListener('visibilitychange',onDocumentVisibilityChange);initQueue();}};var initQueueAfterDocumentIsVisible=function(){document.addEventListener('visibilitychange',onDocumentVisibilityChange);};function getFirstContentfulPaint(){if(window.performance){var paints=window.performance.getEntriesByType('paint');for(var i=0;i<paints.length;i++){if(paints[i]['name']==='first-contentful-paint'){return Math.round(paints[i]['startTime']);}}}
|
||||
return 0;}
|
||||
if(6===_getIEVer()&&'complete'!==document.readyState&&'object'===typeof document.attachEvent){document.attachEvent('onreadystatechange',function(e){if('complete'===document.readyState)window.setTimeout(initQueue,250);});}else{if(isDocumentHidden()){initQueueAfterDocumentIsVisible();}else{initQueue();}};return API;})();
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:16:21 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:56:31 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 1.086
|
||||
exclusion.robots: 0.034
|
||||
exclusion.robots.policy: 0.013
|
||||
esindex: 0.014
|
||||
cdx.remote: 32.334
|
||||
LoadShardBlock: 406.307 (6)
|
||||
PetaboxLoader3.datanode: 390.793 (8)
|
||||
load_resource: 198.935 (2)
|
||||
PetaboxLoader3.resolve: 116.562 (2)
|
||||
*/
|
||||
@@ -0,0 +1,43 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
// Set Double Tap To Go for Main Navigation.
|
||||
var $site_navigation = $( '#site-navigation li:has(ul)' );
|
||||
if ( $site_navigation[0] && 783 <= window.innerWidth ) {
|
||||
$site_navigation.doubleTapToGo();
|
||||
}
|
||||
|
||||
// Set Fitvids
|
||||
$('.entry-content').fitVids();
|
||||
|
||||
} )( jQuery );
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:28 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:43 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.496
|
||||
exclusion.robots: 0.015
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.01
|
||||
cdx.remote: 25.213
|
||||
LoadShardBlock: 167.932 (3)
|
||||
PetaboxLoader3.datanode: 197.441 (4)
|
||||
load_resource: 87.041
|
||||
PetaboxLoader3.resolve: 51.157
|
||||
*/
|
||||
@@ -0,0 +1,116 @@
|
||||
@font-face{font-family:'Iconochive-Regular';src:url('../fonts/Iconochive-Regular.eot');src:url('../fonts/Iconochive-Regular.eot') format('embedded-opentype'),url('../fonts/Iconochive-Regular.woff') format('woff'),url('../fonts/Iconochive-Regular.ttf') format('truetype'),url('../fonts/Iconochive-Regular.svg#Iconochive-Regular') format('svg');font-weight:normal;font-style:normal}
|
||||
[class^="iconochive-"],[class*=" iconochive-"]{font-family:'Iconochive-Regular'!important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
.iconochive-Uplevel:before{content:"\21b5"}
|
||||
.iconochive-exit:before{content:"\1f6a3"}
|
||||
.iconochive-beta:before{content:"\3b2"}
|
||||
.iconochive-logo:before{content:"\1f3db"}
|
||||
.iconochive-audio:before{content:"\1f568"}
|
||||
.iconochive-movies:before{content:"\1f39e"}
|
||||
.iconochive-software:before{content:"\1f4be"}
|
||||
.iconochive-texts:before{content:"\1f56e"}
|
||||
.iconochive-etree:before{content:"\1f3a4"}
|
||||
.iconochive-image:before{content:"\1f5bc"}
|
||||
.iconochive-web:before{content:"\1f5d4"}
|
||||
.iconochive-collection:before{content:"\2211"}
|
||||
.iconochive-folder:before{content:"\1f4c2"}
|
||||
.iconochive-data:before{content:"\1f5c3"}
|
||||
.iconochive-tv:before{content:"\1f4fa"}
|
||||
.iconochive-article:before{content:"\1f5cf"}
|
||||
.iconochive-question:before{content:"\2370"}
|
||||
.iconochive-question-dark:before{content:"\3f"}
|
||||
.iconochive-info:before{content:"\69"}
|
||||
.iconochive-info-small:before{content:"\24d8"}
|
||||
.iconochive-comment:before{content:"\1f5e9"}
|
||||
.iconochive-comments:before{content:"\1f5ea"}
|
||||
.iconochive-person:before{content:"\1f464"}
|
||||
.iconochive-people:before{content:"\1f465"}
|
||||
.iconochive-eye:before{content:"\1f441"}
|
||||
.iconochive-rss:before{content:"\221e"}
|
||||
.iconochive-time:before{content:"\1f551"}
|
||||
.iconochive-quote:before{content:"\275d"}
|
||||
.iconochive-disc:before{content:"\1f4bf"}
|
||||
.iconochive-tv-commercial:before{content:"\1f4b0"}
|
||||
.iconochive-search:before{content:"\1f50d"}
|
||||
.iconochive-search-star:before{content:"\273d"}
|
||||
.iconochive-tiles:before{content:"\229e"}
|
||||
.iconochive-list:before{content:"\21f6"}
|
||||
.iconochive-list-bulleted:before{content:"\2317"}
|
||||
.iconochive-latest:before{content:"\2208"}
|
||||
.iconochive-left:before{content:"\2c2"}
|
||||
.iconochive-right:before{content:"\2c3"}
|
||||
.iconochive-left-solid:before{content:"\25c2"}
|
||||
.iconochive-right-solid:before{content:"\25b8"}
|
||||
.iconochive-up-solid:before{content:"\25b4"}
|
||||
.iconochive-down-solid:before{content:"\25be"}
|
||||
.iconochive-dot:before{content:"\23e4"}
|
||||
.iconochive-dots:before{content:"\25a6"}
|
||||
.iconochive-columns:before{content:"\25af"}
|
||||
.iconochive-sort:before{content:"\21d5"}
|
||||
.iconochive-atoz:before{content:"\1f524"}
|
||||
.iconochive-ztoa:before{content:"\1f525"}
|
||||
.iconochive-upload:before{content:"\1f4e4"}
|
||||
.iconochive-download:before{content:"\1f4e5"}
|
||||
.iconochive-favorite:before{content:"\2605"}
|
||||
.iconochive-heart:before{content:"\2665"}
|
||||
.iconochive-play:before{content:"\25b6"}
|
||||
.iconochive-play-framed:before{content:"\1f3ac"}
|
||||
.iconochive-fullscreen:before{content:"\26f6"}
|
||||
.iconochive-mute:before{content:"\1f507"}
|
||||
.iconochive-unmute:before{content:"\1f50a"}
|
||||
.iconochive-share:before{content:"\1f381"}
|
||||
.iconochive-edit:before{content:"\270e"}
|
||||
.iconochive-reedit:before{content:"\2710"}
|
||||
.iconochive-gear:before{content:"\2699"}
|
||||
.iconochive-remove-circle:before{content:"\274e"}
|
||||
.iconochive-plus-circle:before{content:"\1f5d6"}
|
||||
.iconochive-minus-circle:before{content:"\1f5d5"}
|
||||
.iconochive-x:before{content:"\1f5d9"}
|
||||
.iconochive-fork:before{content:"\22d4"}
|
||||
.iconochive-trash:before{content:"\1f5d1"}
|
||||
.iconochive-warning:before{content:"\26a0"}
|
||||
.iconochive-flash:before{content:"\1f5f2"}
|
||||
.iconochive-world:before{content:"\1f5fa"}
|
||||
.iconochive-lock:before{content:"\1f512"}
|
||||
.iconochive-unlock:before{content:"\1f513"}
|
||||
.iconochive-twitter:before{content:"\1f426"}
|
||||
.iconochive-facebook:before{content:"\66"}
|
||||
.iconochive-googleplus:before{content:"\67"}
|
||||
.iconochive-reddit:before{content:"\1f47d"}
|
||||
.iconochive-tumblr:before{content:"\54"}
|
||||
.iconochive-pinterest:before{content:"\1d4df"}
|
||||
.iconochive-popcorn:before{content:"\1f4a5"}
|
||||
.iconochive-email:before{content:"\1f4e7"}
|
||||
.iconochive-embed:before{content:"\1f517"}
|
||||
.iconochive-gamepad:before{content:"\1f579"}
|
||||
.iconochive-Zoom_In:before{content:"\2b"}
|
||||
.iconochive-Zoom_Out:before{content:"\2d"}
|
||||
.iconochive-RSS:before{content:"\1f4e8"}
|
||||
.iconochive-Light_Bulb:before{content:"\1f4a1"}
|
||||
.iconochive-Add:before{content:"\2295"}
|
||||
.iconochive-Tab_Activity:before{content:"\2318"}
|
||||
.iconochive-Forward:before{content:"\23e9"}
|
||||
.iconochive-Backward:before{content:"\23ea"}
|
||||
.iconochive-No_Audio:before{content:"\1f508"}
|
||||
.iconochive-Pause:before{content:"\23f8"}
|
||||
.iconochive-No_Favorite:before{content:"\2606"}
|
||||
.iconochive-Unike:before{content:"\2661"}
|
||||
.iconochive-Song:before{content:"\266b"}
|
||||
.iconochive-No_Flag:before{content:"\2690"}
|
||||
.iconochive-Flag:before{content:"\2691"}
|
||||
.iconochive-Done:before{content:"\2713"}
|
||||
.iconochive-Check:before{content:"\2714"}
|
||||
.iconochive-Refresh:before{content:"\27f3"}
|
||||
.iconochive-Headphones:before{content:"\1f3a7"}
|
||||
.iconochive-Chart:before{content:"\1f4c8"}
|
||||
.iconochive-Bookmark:before{content:"\1f4d1"}
|
||||
.iconochive-Documents:before{content:"\1f4da"}
|
||||
.iconochive-Newspaper:before{content:"\1f4f0"}
|
||||
.iconochive-Podcast:before{content:"\1f4f6"}
|
||||
.iconochive-Radio:before{content:"\1f4fb"}
|
||||
.iconochive-Cassette:before{content:"\1f4fc"}
|
||||
.iconochive-Shuffle:before{content:"\1f500"}
|
||||
.iconochive-Loop:before{content:"\1f501"}
|
||||
.iconochive-Low_Audio:before{content:"\1f509"}
|
||||
.iconochive-First:before{content:"\1f396"}
|
||||
.iconochive-Invisible:before{content:"\1f576"}
|
||||
.iconochive-Computer:before{content:"\1f5b3"}
|
||||
@@ -0,0 +1,118 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
/*jshint browser:true */
|
||||
/*!
|
||||
* FitVids 1.1
|
||||
*
|
||||
* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
|
||||
* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
|
||||
* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
|
||||
*
|
||||
*/
|
||||
|
||||
;(function( $ ){
|
||||
|
||||
'use strict';
|
||||
|
||||
$.fn.fitVids = function( options ) {
|
||||
var settings = {
|
||||
customSelector: null,
|
||||
ignore: null
|
||||
};
|
||||
|
||||
if(!document.getElementById('fit-vids-style')) {
|
||||
// appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
|
||||
var head = document.head || document.getElementsByTagName('head')[0];
|
||||
var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
|
||||
var div = document.createElement("div");
|
||||
div.innerHTML = '<p>x</p><style id="fit-vids-style">' + css + '</style>';
|
||||
head.appendChild(div.childNodes[1]);
|
||||
}
|
||||
|
||||
if ( options ) {
|
||||
$.extend( settings, options );
|
||||
}
|
||||
|
||||
return this.each(function(){
|
||||
var selectors = [
|
||||
'iframe[src*="player.vimeo.com"]',
|
||||
'iframe[src*="youtube.com"]',
|
||||
'iframe[src*="youtube-nocookie.com"]',
|
||||
'iframe[src*="kickstarter.com"][src*="video.html"]',
|
||||
'object',
|
||||
'embed'
|
||||
];
|
||||
|
||||
if (settings.customSelector) {
|
||||
selectors.push(settings.customSelector);
|
||||
}
|
||||
|
||||
var ignoreList = '.fitvidsignore';
|
||||
|
||||
if(settings.ignore) {
|
||||
ignoreList = ignoreList + ', ' + settings.ignore;
|
||||
}
|
||||
|
||||
var $allVideos = $(this).find(selectors.join(','));
|
||||
$allVideos = $allVideos.not('object object'); // SwfObj conflict patch
|
||||
$allVideos = $allVideos.not(ignoreList); // Disable FitVids on this video.
|
||||
|
||||
$allVideos.each(function(){
|
||||
var $this = $(this);
|
||||
if($this.parents(ignoreList).length > 0) {
|
||||
return; // Disable FitVids on this video.
|
||||
}
|
||||
if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
|
||||
if ((!$this.css('height') && !$this.css('width')) && (isNaN($this.attr('height')) || isNaN($this.attr('width'))))
|
||||
{
|
||||
$this.attr('height', 9);
|
||||
$this.attr('width', 16);
|
||||
}
|
||||
var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
|
||||
width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
|
||||
aspectRatio = height / width;
|
||||
if(!$this.attr('name')){
|
||||
var videoName = 'fitvid' + $.fn.fitVids._count;
|
||||
$this.attr('name', videoName);
|
||||
$.fn.fitVids._count++;
|
||||
}
|
||||
$this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%');
|
||||
$this.removeAttr('height').removeAttr('width');
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
// Internal counter for unique video names.
|
||||
$.fn.fitVids._count = 0;
|
||||
|
||||
// Works with either jQuery or Zepto
|
||||
})( window.jQuery || window.Zepto );
|
||||
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:28 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:42 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.504
|
||||
exclusion.robots: 0.017
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.011
|
||||
cdx.remote: 18.061
|
||||
LoadShardBlock: 253.88 (3)
|
||||
PetaboxLoader3.datanode: 264.869 (4)
|
||||
PetaboxLoader3.resolve: 71.768 (2)
|
||||
load_resource: 94.418
|
||||
*/
|
||||
@@ -0,0 +1,123 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
/**
|
||||
* navigation.js
|
||||
*
|
||||
* Handles toggling the navigation menu for small screens and enables tab
|
||||
* support for dropdown menus.
|
||||
*/
|
||||
( function() {
|
||||
"use strict";
|
||||
|
||||
var container, button, menu, links, subMenus;
|
||||
|
||||
container = document.getElementById( 'site-navigation' );
|
||||
if ( ! container ) {
|
||||
return;
|
||||
}
|
||||
|
||||
button = container.getElementsByTagName( 'button' )[0];
|
||||
if ( 'undefined' === typeof button ) {
|
||||
return;
|
||||
}
|
||||
|
||||
menu = container.getElementsByTagName( 'ul' )[0];
|
||||
|
||||
if ( -1 === menu.className.indexOf( 'nav-menu' ) ) {
|
||||
menu.className += ' nav-menu';
|
||||
}
|
||||
|
||||
function setARIA() {
|
||||
if ( 783 > window.innerWidth ) {
|
||||
button.setAttribute( 'aria-controls', 'primary-menu' );
|
||||
button.setAttribute( 'aria-expanded', 'false' );
|
||||
menu.setAttribute( 'aria-expanded', 'false' );
|
||||
} else {
|
||||
button.removeAttribute( 'aria-controls' );
|
||||
button.removeAttribute( 'aria-expanded' );
|
||||
menu.removeAttribute( 'aria-expanded' );
|
||||
}
|
||||
}
|
||||
|
||||
button.onclick = function() {
|
||||
if ( -1 !== container.className.indexOf( 'toggled' ) ) {
|
||||
container.className = container.className.replace( ' toggled', '' );
|
||||
button.setAttribute( 'aria-expanded', 'false' );
|
||||
menu.setAttribute( 'aria-expanded', 'false' );
|
||||
} else {
|
||||
container.className += ' toggled';
|
||||
button.setAttribute( 'aria-expanded', 'true' );
|
||||
menu.setAttribute( 'aria-expanded', 'true' );
|
||||
}
|
||||
};
|
||||
|
||||
// Get all the link elements within the menu.
|
||||
links = menu.getElementsByTagName( 'a' );
|
||||
subMenus = menu.getElementsByTagName( 'ul' );
|
||||
|
||||
// Set ARIA attributes properly.
|
||||
window.addEventListener( 'load', setARIA, false );
|
||||
window.addEventListener( 'resize', setARIA, true );
|
||||
|
||||
// Set menu items with submenus to aria-haspopup="true".
|
||||
for ( var i = 0, len = subMenus.length; i < len; i++ ) {
|
||||
subMenus[i].parentNode.setAttribute( 'aria-haspopup', 'true' );
|
||||
}
|
||||
|
||||
// Each time a menu link is focused or blurred, toggle focus.
|
||||
for ( i = 0, len = links.length; i < len; i++ ) {
|
||||
links[i].addEventListener( 'focus', toggleFocus, true );
|
||||
links[i].addEventListener( 'blur', toggleFocus, true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets or removes .focus class on an element.
|
||||
*/
|
||||
function toggleFocus() {
|
||||
var self = this;
|
||||
|
||||
// Move up through the ancestors of the current link until we hit .nav-menu.
|
||||
while ( -1 === self.className.indexOf( 'nav-menu' ) ) {
|
||||
|
||||
// On li elements toggle the class .focus.
|
||||
if ( 'li' === self.tagName.toLowerCase() ) {
|
||||
if ( -1 !== self.className.indexOf( 'focus' ) ) {
|
||||
self.className = self.className.replace( ' focus', '' );
|
||||
} else {
|
||||
self.className += ' focus';
|
||||
}
|
||||
}
|
||||
|
||||
self = self.parentElement;
|
||||
}
|
||||
}
|
||||
} )();
|
||||
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:28 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:42 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.789
|
||||
exclusion.robots: 0.026
|
||||
exclusion.robots.policy: 0.011
|
||||
esindex: 0.02
|
||||
cdx.remote: 8.408
|
||||
LoadShardBlock: 127.815 (3)
|
||||
PetaboxLoader3.datanode: 114.547 (4)
|
||||
PetaboxLoader3.resolve: 65.392 (2)
|
||||
load_resource: 88.131
|
||||
*/
|
||||
@@ -0,0 +1,440 @@
|
||||
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/**
|
||||
* 1. Change the default font family in all browsers (opinionated).
|
||||
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
* 1. Add the correct display in Edge, IE, and Firefox.
|
||||
* 2. Add the correct display in IE.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details, /* 1 */
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
main, /* 2 */
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary { /* 1 */
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in iOS 4-7.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10-.
|
||||
* 1. Add the correct display in IE.
|
||||
*/
|
||||
|
||||
template, /* 1 */
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Remove the gray background on active links in IE 10.
|
||||
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent; /* 1 */
|
||||
-webkit-text-decoration-skip: objects; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the outline on focused links when they are also active or hovered
|
||||
* in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline-width: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Firefox 39-.
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font style in Android 4.3-.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct background and color in IE 9-.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background-color: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10-.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hide the overflow in IE.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct margin in IE 8.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change font properties to `inherit` in all browsers (opinionated).
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font: inherit; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the font weight unset by the previous rule.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
||||
* controls in Android 4.
|
||||
* 2. Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
html [type="button"], /* 1 */
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Change the border, margin, and padding in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10-.
|
||||
* 2. Remove the padding in IE 10-.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the text style of placeholders in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
::-webkit-input-placeholder {
|
||||
color: inherit;
|
||||
opacity: 0.54;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:27 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:40 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.659
|
||||
exclusion.robots: 0.022
|
||||
exclusion.robots.policy: 0.01
|
||||
esindex: 0.016
|
||||
cdx.remote: 13.409
|
||||
LoadShardBlock: 82.51 (3)
|
||||
PetaboxLoader3.datanode: 84.276 (4)
|
||||
load_resource: 219.204
|
||||
PetaboxLoader3.resolve: 187.65
|
||||
*/
|
||||
@@ -0,0 +1,32 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
/* Do not modify this file directly. It is compiled from other files. */
|
||||
!function(){function t(){if(this.complete){var e=this.getAttribute("data-lazy-src");if(e&&this.src!==e)this.addEventListener("onload",t);else{var d=this.width,n=this.height;d&&d>0&&n&&n>0&&(this.setAttribute("width",d),this.setAttribute("height",n),i(this))}}else this.addEventListener("onload",t)}var e=function(){for(var e=document.querySelectorAll("img[data-recalc-dims]"),i=0;i<e.length;i++)t.call(e[i])},i=function(t){t.removeAttribute("data-recalc-dims"),t.removeAttribute("scale")};"undefined"!=typeof window&&"undefined"!=typeof document&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",e):e()),document.body.addEventListener("is.post-load",e)}();
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:04:16 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:41 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 1.277
|
||||
exclusion.robots: 0.018
|
||||
exclusion.robots.policy: 0.008
|
||||
esindex: 0.01
|
||||
cdx.remote: 6.87
|
||||
LoadShardBlock: 173.885 (6)
|
||||
PetaboxLoader3.datanode: 165.163 (8)
|
||||
PetaboxLoader3.resolve: 175.56 (3)
|
||||
load_resource: 221.4 (2)
|
||||
*/
|
||||
@@ -0,0 +1,59 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
( function() {
|
||||
"use strict";
|
||||
|
||||
var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
|
||||
is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1,
|
||||
is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1;
|
||||
|
||||
if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) {
|
||||
window.addEventListener( 'hashchange', function() {
|
||||
var id = location.hash.substring( 1 ),
|
||||
element;
|
||||
|
||||
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
element = document.getElementById( id );
|
||||
|
||||
if ( element ) {
|
||||
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
|
||||
element.tabIndex = -1;
|
||||
}
|
||||
|
||||
element.focus();
|
||||
}
|
||||
}, false );
|
||||
}
|
||||
})();
|
||||
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:28 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:42 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.47
|
||||
exclusion.robots: 0.017
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.009
|
||||
cdx.remote: 6.407
|
||||
LoadShardBlock: 57.31 (3)
|
||||
PetaboxLoader3.datanode: 68.562 (4)
|
||||
load_resource: 108.571
|
||||
PetaboxLoader3.resolve: 87.186
|
||||
*/
|
||||
@@ -0,0 +1,31 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t){function n(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return r(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var o=0,l=function(){};return{s:l,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:l}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){u=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(u)throw i}}}}function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}!function(){var e,t=n(document.getElementsByClassName("cm-contact-form"));try{for(t.s();!(e=t.n()).done;){e.value.onsubmit=function(e){var t,n,r,o,l,i,a,u;e.preventDefault();var s=e.target,c=null===(t=s.getElementsByClassName("firstName")[0])||void 0===t?void 0:t.value,f=null===(n=s.getElementsByClassName("lastName")[0])||void 0===n?void 0:n.value,d=null===(r=s.getElementsByClassName("email")[0])||void 0===r?void 0:r.value,m=null===(o=s.getElementsByClassName("telephone")[0])||void 0===o?void 0:o.value,v=null===(l=s.getElementsByClassName("consent_check")[0])||void 0===l?void 0:l.checked,y=(null===(i=s.getElementsByClassName("list_id")[0])||void 0===i?void 0:i.value)||null;jQuery.post(null===(a=ce4wp_form_submit_data)||void 0===a?void 0:a.url,{action:"ce4wp_form_submission",nonce:null===(u=ce4wp_form_submit_data)||void 0===u?void 0:u.nonce,first_name:c,last_name:f,email:d,telephone:m,consent:v,list_id:y}).done((function(){s.style.visibility="hidden",s.parentElement.getElementsByClassName("onSubmission")[0].style.display="block"}))}}}catch(e){t.e(e)}finally{t.f()}}()}]);
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:28 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:41 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.561
|
||||
exclusion.robots: 0.019
|
||||
exclusion.robots.policy: 0.008
|
||||
esindex: 0.011
|
||||
cdx.remote: 16.512
|
||||
LoadShardBlock: 215.76 (3)
|
||||
PetaboxLoader3.datanode: 118.555 (4)
|
||||
PetaboxLoader3.resolve: 199.414 (2)
|
||||
load_resource: 133.175
|
||||
*/
|
||||
@@ -0,0 +1,25 @@
|
||||
.wp-block-ce4wp-subscribe{max-width:840px;margin:0 auto}.wp-block-ce4wp-subscribe .title{margin-bottom:0}.wp-block-ce4wp-subscribe .subTitle{margin-top:0;font-size:0.8em}.wp-block-ce4wp-subscribe .disclaimer{margin-top:5px;font-size:0.8em}.wp-block-ce4wp-subscribe .disclaimer .disclaimer-label{margin-left:10px}.wp-block-ce4wp-subscribe .inputBlock{width:100%;margin-bottom:10px}.wp-block-ce4wp-subscribe .inputBlock input{width:100%}.wp-block-ce4wp-subscribe .inputBlock label{display:inline-block}.wp-block-ce4wp-subscribe .submit-button{margin-top:10px;display:block}.wp-block-ce4wp-subscribe .required-text{display:inline-block;margin:0;padding:0;margin-left:0.3em}.wp-block-ce4wp-subscribe .onSubmission{height:0;max-width:840px;margin:0 auto}.ce4wp-link{cursor:pointer}
|
||||
|
||||
.no-flex{display:block}.sub-header{margin-bottom:1em}
|
||||
|
||||
|
||||
/*
|
||||
FILE ARCHIVED ON 21:15:27 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:40 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.473
|
||||
exclusion.robots: 0.014
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.009
|
||||
cdx.remote: 24.834
|
||||
LoadShardBlock: 118.269 (3)
|
||||
PetaboxLoader3.datanode: 208.17 (4)
|
||||
PetaboxLoader3.resolve: 70.62 (2)
|
||||
load_resource: 173.324
|
||||
*/
|
||||
@@ -0,0 +1,31 @@
|
||||
var _____WB$wombat$assign$function_____=function(name){return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name))||self[name];};if(!self.__WB_pmw){self.__WB_pmw=function(obj){this.__WB_source=obj;return this;}}{
|
||||
let window = _____WB$wombat$assign$function_____("window");
|
||||
let self = _____WB$wombat$assign$function_____("self");
|
||||
let document = _____WB$wombat$assign$function_____("document");
|
||||
let location = _____WB$wombat$assign$function_____("location");
|
||||
let top = _____WB$wombat$assign$function_____("top");
|
||||
let parent = _____WB$wombat$assign$function_____("parent");
|
||||
let frames = _____WB$wombat$assign$function_____("frames");
|
||||
let opens = _____WB$wombat$assign$function_____("opens");
|
||||
/*! This file is auto-generated */
|
||||
!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o<n.length;o++)n[o].style.display="none";for(o=0;o<s.length;o++)if(r=s[o],e.source===r.contentWindow){if(r.removeAttribute("style"),"height"===t.message){if(1e3<(i=parseInt(t.value,10)))i=1e3;else if(~~i<200)i=200;r.height=i}if("link"===t.message)if(a=d.createElement("a"),i=d.createElement("a"),a.href=r.getAttribute("src"),i.href=t.value,i.host===a.host)if(d.activeElement===r)c.top.location.href=t.value}}},e)c.addEventListener("message",c.wp.receiveEmbedMessage,!1),d.addEventListener("DOMContentLoaded",t,!1),c.addEventListener("load",t,!1);function t(){if(!n){n=!0;for(var e,t,r=-1!==navigator.appVersion.indexOf("MSIE 10"),a=!!navigator.userAgent.match(/Trident.*rv:11\./),i=d.querySelectorAll("iframe.wp-embedded-content"),s=0;s<i.length;s++){if(!(e=i[s]).getAttribute("data-secret"))t=Math.random().toString(36).substr(2,10),e.src+="#?secret="+t,e.setAttribute("data-secret",t);if(r||a)(t=e.cloneNode(!0)).removeAttribute("security"),e.parentNode.replaceChild(t,e)}}}}(window,document);
|
||||
}
|
||||
/*
|
||||
FILE ARCHIVED ON 21:04:31 Jun 25, 2021 AND RETRIEVED FROM THE
|
||||
INTERNET ARCHIVE ON 19:51:42 Jan 14, 2026.
|
||||
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
||||
|
||||
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
||||
SECTION 108(a)(3)).
|
||||
*/
|
||||
/*
|
||||
playback timings (ms):
|
||||
captures_list: 0.525
|
||||
exclusion.robots: 0.017
|
||||
exclusion.robots.policy: 0.007
|
||||
esindex: 0.01
|
||||
cdx.remote: 29.091
|
||||
LoadShardBlock: 304.917 (6)
|
||||
PetaboxLoader3.datanode: 273.487 (8)
|
||||
load_resource: 37.907 (2)
|
||||
*/
|
||||
@@ -0,0 +1,168 @@
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqJ2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqt2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqB2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoqF2nOeZ.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoq92nA.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwf7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMw77I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwX7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwT7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwr7Iw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwf7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMw77I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwX7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwT7I-NP.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Lora';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(../s/lora/v17/0QIvMX1D_JOuMwr7Iw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXk-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXA-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXc-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXs-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXo-oBOL.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Source Serif Pro';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeauXQ-oA.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
window.wpcom=window.wpcom||{};window._stq=window._stq||[];function st_go(a){window._stq.push(['view',a]);};function linktracker_init(b,p){window._stq.push(['clickTrackerInit',b,p]);};window.wpcom.stats=(function(){var _clickTracker=(function(){var _blog,_post;var _addEvent=function(el,t,cb){if('function'===typeof el.addEventListener){el.addEventListener(t,cb);}else if('object'===typeof el.attachEvent){el.attachEvent('on'+t,cb);}};var _getClickTarget=function(e){if('object'===typeof e&&e.target){return e.target;}else{return window.event.srcElement;}};var _clickTrack=function(e){var d=0;if('object'===typeof InstallTrigger)d=100;if(7===_getIEVer())d=100;_processLink(_getClickTarget(e),d);};var _contextTrack=function(e){_processLink(_getClickTarget(e),0);};var _isSameHost=function(a){var l=document.location;if(l.host===a.host)return true;if(''===a.host)return true;if(l.protocol===a.protocol&&l.host===a.hostname){if('http:'===l.protocol&&l.host+':80'===a.host)return true;if('https:'===l.protocol&&l.host+':443'===a.host)return true;};return false;};var _processLink=function(a,d){try{if('object'!==typeof a)return;while('A'!==a.nodeName){if('undefined'===typeof a.nodeName)return;if('object'!==typeof a.parentNode)return;a=a.parentNode;};if(_isSameHost(a))return;if('javascript:'===a.protocol)return;window._stq.push(['click',{s:'2',u:a.href,r:('undefined'!==typeof a.rel)?a.rel:'0',b:('undefined'!==typeof _blog)?_blog:'0',p:('undefined'!==typeof _post)?_post:'0'}]);if(d){var now=new Date();var end=now.getTime()+d;while(true){now=new Date();if(now.getTime()>end){break}}}}catch(e){}};var API={init:function(b,p){_blog=b;_post=p;if(document.body){_addEvent(document.body,'click',_clickTrack);_addEvent(document.body,'contextmenu',_contextTrack);}else if(document){_addEvent(document,'click',_clickTrack);_addEvent(document,'contextmenu',_contextTrack);}}};return API;})();var _getIEVer=function(){var v=0;if('object'===typeof navigator&&navigator.appName=='Microsoft Internet Explorer'){var m=navigator.userAgent.match(/MSIE ([0-9]{1,})[\.0-9]{0,}/);if(null!==m){v=parseInt(m[1]);}};return v;};var _serialize=function(o){var p,q=[];for(p in o){if(o.hasOwnProperty(p)){q.push(encodeURIComponent(p)+'='+encodeURIComponent(o[p]));}};return q.join('&');};var _loadGif=function(t,q,id){var i=new Image();i.src=document.location.protocol+'//pixel.wp.com/'+t+'?'+q+'&rand='+Math.random();i.alt=":)";i.width='6';i.height='5';if('string'===typeof id&&document.body){i.id=id;document.body.appendChild(i);}};var _computePerformance=function(o){var conn=navigator.connection||navigator.mozConnection||navigator.webkitConnection;if(conn){if(conn.effectiveType){o.conn_type=conn.effectiveType;}
|
||||
if(conn.rtt){o.conn_rtt=conn.rtt;}
|
||||
if(conn.downlink){o.conn_downlink=conn.downlink;}}
|
||||
if(window.performance){var performance=window.performance;if(window.PerformanceNavigationTiming){var navigationTiming=performance.getEntriesByType('navigation')[0];if(navigationTiming.nextHopProtocol){o.protocol=navigationTiming.nextHopProtocol;}}
|
||||
if(performance.timing&&performance.navigation&&(performance.navigation.type===0||performance.navigation.type===1)){var t=performance.timing;o.dns_latency=Math.round(t.domainLookupEnd-t.domainLookupStart);o.conn_latency=Math.round(t.connectEnd-t.connectStart);o.resp_latency=Math.round(t.responseStart-t.requestStart);o.resp_duration=Math.round(t.responseEnd-t.responseStart);o.dom_interact=Math.round(t.domInteractive-t.navigationStart);o.dom_load=Math.round(t.domContentLoadedEventStart-t.navigationStart);if(t.loadEventStart>0){o.page_load=Math.round(t.loadEventStart-t.navigationStart);}}
|
||||
var resources=performance.getEntriesByType('resource');if(resources.length>0){var cssFiles=0,jsFiles=0,imgFiles=0,fontFiles=0,otherFiles=0,cssDuration=0,jsDuration=0,imgDuration=0,fontDuration=0,otherDuration=0,http1Files=0,http2Files=0,sslFiles=0,originFiles=0,externalFiles=0;for(var i=0;i<resources.length;i++){var resource=resources[i];if(resource.nextHopProtocol){if(resource.nextHopProtocol.startsWith('http/1')){http1Files+=1;}else if('h2'===resource.nextHopProtocol){http2Files+=1;}
|
||||
if(resource.name.startsWith('https')){sslFiles+=1;}}else{http1Files+=1;if(resource.name.startsWith('https')){sslFiles+=1;}}
|
||||
if(resource.name.indexOf(location.hostname)>=0){originFiles+=1;}else{externalFiles+=1;}
|
||||
var extension;if(resource.name.indexOf('fonts.googleapis.com/css')>=0){extension='css';}else{extension=resource.name.split(/\#|\?/)[0].split('.').pop();}
|
||||
if(extension){extension=extension.toLowerCase();if('js'===extension){jsDuration+=resource.duration;jsFiles+=1;}else if('css'===extension){cssDuration+=resource.duration;cssFiles+=1;}else if('gif'===extension||'jpg'===extension||'jpeg'===extension||'png'===extension){imgDuration+=resource.duration;imgFiles+=1;}else if('woff'===extension||'woff2'===extension||'ttf'===extension||'otf'===extension){fontDuration+=resource.duration;fontFiles+=1;}else{otherDuration+=resource.duration;otherFiles+=1;}}else{otherDuration+=resource.duration;otherFiles+=1;}}
|
||||
o.files_origin=originFiles;o.files_ext=externalFiles;o.files_ssl=sslFiles;o.files_http1=http1Files;o.files_http2=http2Files;o.files_js=jsFiles;o.files_css=cssFiles;o.files_img=imgFiles;o.files_font=fontFiles;o.files_other=otherFiles;o.duration_js=Math.round(jsDuration);o.duration_css=Math.round(cssDuration);o.duration_img=Math.round(imgDuration);o.duration_font=Math.round(fontDuration);o.duration_other=Math.round(otherDuration);}
|
||||
var paintEntries=performance.getEntriesByType('paint');if(paintEntries===undefined){return;}
|
||||
for(var i=0;i<paintEntries.length;i++){var performanceEntry=paintEntries[i];if('first-paint'===performanceEntry.name){o.first_paint=Math.round(performanceEntry.startTime);}else if('first-contentful-paint'===performanceEntry.name){o.first_cf_paint=Math.round(performanceEntry.startTime);}}}};var STQ=function(q){this.a=1;if(q&&q.length){for(var i=0;i<q.length;i++){this.push(q[i]);}}};STQ.prototype.push=function(args){if(args){if("object"===typeof args&&args.length){var cmd=args.splice(0,1);if(API[cmd])API[cmd].apply(null,args);}else if("function"===typeof args){args();}}};var initQueue=function(){if(!window._stq.a){window._stq=new STQ(window._stq);}};var newAnonId=function(){var randomBytesLength=18,randomBytes=[];if(window.crypto&&window.crypto.getRandomValues){randomBytes=new Uint8Array(randomBytesLength);window.crypto.getRandomValues(randomBytes);}else{for(var i=0;i<randomBytesLength;++i){randomBytes[i]=Math.floor(Math.random()*256);}}
|
||||
return btoa(String.fromCharCode.apply(String,randomBytes));};var _initTracks=function(o){o._ui=newAnonId();o._ut='anon';o._en='jetpack_pageview_timing';var date=new Date();o._ts=date.getTime();o._tz=date.getTimezoneOffset()/60;var nav=window.navigator;var screen=window.screen;o._lg=nav.language;o._pf=nav.platform;o._ht=screen.height;o._wd=screen.width;var sx=(window.pageXOffset!==undefined)?window.pageXOffset:(document.documentElement||document.body.parentNode||document.body).scrollLeft;var sy=(window.pageYOffset!==undefined)?window.pageYOffset:(document.documentElement||document.body.parentNode||document.body).scrollTop;o._sx=(sx!==undefined)?sx:0;o._sy=(sy!==undefined)?sy:0;if(document.location!==undefined){o._dl=document.location.toString();}
|
||||
if(document.referrer!==undefined){o._dr=document.referrer;}};var API={view:function(o){o.host=document.location.host;o.ref=document.referrer;o.fcp=getFirstContentfulPaint();_loadGif('g.gif',_serialize(o),'wpstats');if(window.performance&&Math.random()<0.005){window.addEventListener('load',function(event){window.setTimeout(API.samplePerformance.bind(this,o.blog,o.post,o.j.split(':').reverse()[0]),100);});}},click:function(o){_loadGif('c.gif',_serialize(o),false);},clickTrackerInit:function(b,p){_clickTracker.init(b,p);},samplePerformance:function(blogId,postId,jetpackVersion){if(!window.performance){return;}
|
||||
var o={blog:blogId,post:postId,blog_id:blogId,jetpack_version:jetpackVersion};_initTracks(o);_computePerformance(o);_loadGif('t.gif',_serialize(o));}};var isDocumentHidden=function(){return typeof document.hidden!=="undefined"&&document.hidden;};var onDocumentVisibilityChange=function(){if(!document.hidden){document.removeEventListener('visibilitychange',onDocumentVisibilityChange);initQueue();}};var initQueueAfterDocumentIsVisible=function(){document.addEventListener('visibilitychange',onDocumentVisibilityChange);};function getFirstContentfulPaint(){if(window.performance){var paints=window.performance.getEntriesByType('paint');for(var i=0;i<paints.length;i++){if(paints[i]['name']==='first-contentful-paint'){return Math.round(paints[i]['startTime']);}}}
|
||||
return 0;}
|
||||
if(6===_getIEVer()&&'complete'!==document.readyState&&'object'===typeof document.attachEvent){document.attachEvent('onreadystatechange',function(e){if('complete'===document.readyState)window.setTimeout(initQueue,250);});}else{if(isDocumentHidden()){initQueueAfterDocumentIsVisible();}else{initQueue();}};return API;})();
|
||||
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,890 @@
|
||||
<!DOCTYPE html>
|
||||
<!-- saved from url=(0060)https://web.archive.org/web/20210625211526/https://ak-21.de/ -->
|
||||
<html lang="de-DE" style="--wm-toolbar-height: 67px;"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script src="./Ak21 – Jahrbuch der JHS_files/athena.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">window.addEventListener('DOMContentLoaded',function(){var v=archive_analytics.values;v.service='wb';v.server_name='wwwb-app206.us.archive.org';v.server_ms=333;archive_analytics.send_pageview({});});</script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/bundle-playback.js" charset="utf-8"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/wombat.js" charset="utf-8"></script>
|
||||
<script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden","showSwfDownload":true};</script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/ruffle.js"></script>
|
||||
<script type="text/javascript">
|
||||
__wm.init("https://web.archive.org/web");
|
||||
__wm.wombat("https://ak-21.de/","20210625211526","https://web.archive.org/","web","https://web-static.archive.org/_static/",
|
||||
"1624655726");
|
||||
</script>
|
||||
<link rel="stylesheet" type="text/css" href="./Ak21 – Jahrbuch der JHS_files/banner-styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="./Ak21 – Jahrbuch der JHS_files/iconochive.css">
|
||||
<!-- End Wayback Rewrite JS Include -->
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="pingback" href="https://ak-21.de/xmlrpc.php">
|
||||
<title>Ak21 – Jahrbuch der JHS</title>
|
||||
<meta name="robots" content="max-image-preview:large">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://fonts.googleapis.com/">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://use.fontawesome.com/">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://s.w.org/">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://i0.wp.com/">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://i1.wp.com/">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://i2.wp.com/">
|
||||
<link rel="dns-prefetch" href="https://web.archive.org/web/20210625211526/https://c0.wp.com/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Feed" href="/index.php/feed/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Kommentar-Feed" href="/index.php/comments/feed/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Kommentar-Feed" href="/index.php/sample-page/feed/">
|
||||
<script type="text/javascript">
|
||||
window._wpemojiSettings = {"baseUrl":"https:\/\/web.archive.org\/web\/20210625211526\/https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/web.archive.org\/web\/20210625211526\/https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/web.archive.org\/web\/20210625211526\/https:\/\/ak-21.de\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"}};
|
||||
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
|
||||
</script><script src="./Ak21 – Jahrbuch der JHS_files/wp-emoji-release.min.js" type="text/javascript" defer=""></script>
|
||||
<style type="text/css">
|
||||
img.wp-smiley,
|
||||
img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
</style>
|
||||
<style type="text/css">
|
||||
.hasCountdown{text-shadow:transparent 0 1px 1px;overflow:hidden;padding:5px}
|
||||
.countdown_rtl{direction:rtl}
|
||||
.countdown_holding span{background-color:#ccc}
|
||||
.countdown_row{clear:both;width:100%;text-align:center}
|
||||
.countdown_show1 .countdown_section{width:98%}
|
||||
.countdown_show2 .countdown_section{width:48%}
|
||||
.countdown_show3 .countdown_section{width:32.5%}
|
||||
.countdown_show4 .countdown_section{width:24.5%}
|
||||
.countdown_show5 .countdown_section{width:19.5%}
|
||||
.countdown_show6 .countdown_section{width:16.25%}
|
||||
.countdown_show7 .countdown_section{width:14%}
|
||||
.countdown_section{display:block;float:left;font-size:75%;text-align:center;margin:3px 0}
|
||||
.countdown_amount{font-size:200%}
|
||||
.countdown_descr{display:block;width:100%}
|
||||
a.countdown_infolink{display:block;border-radius:10px;width:14px;height:13px;float:right;font-size:9px;line-height:13px;font-weight:700;text-align:center;position:relative;top:-15px;border:1px solid}
|
||||
#countdown-preview{padding:10px}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ayecode-ui-css" href="./Ak21 – Jahrbuch der JHS_files/ayecode-ui-compatibility.css" type="text/css" media="all">
|
||||
<style id="ayecode-ui-inline-css" type="text/css">
|
||||
|
||||
body.modal-open #wpadminbar{z-index:999}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" id="wp-block-library-css" href="./Ak21 – Jahrbuch der JHS_files/style.min.css" type="text/css" media="all">
|
||||
<style id="wp-block-library-inline-css" type="text/css">
|
||||
.has-text-align-justify{text-align:justify;}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ce4wp-subscribe-style-css" href="./Ak21 – Jahrbuch der JHS_files/subscribe.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-font-css" href="./Ak21 – Jahrbuch der JHS_files/css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="genericons-css" href="./Ak21 – Jahrbuch der JHS_files/genericons.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="normalize-css" href="./Ak21 – Jahrbuch der JHS_files/normalize.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-style-css" href="./Ak21 – Jahrbuch der JHS_files/style.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="./Ak21 – Jahrbuch der JHS_files/all.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jetpack_css-css" href="./Ak21 – Jahrbuch der JHS_files/jetpack.css" type="text/css" media="all">
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/jquery.min.js" id="jquery-core-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/jquery-migrate.min.js" id="jquery-migrate-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/select2.min.js" id="select2-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/bootstrap.bundle.min.js" id="bootstrap-js-bundle-js"></script>
|
||||
<script type="text/javascript" id="bootstrap-js-bundle-js-after">
|
||||
|
||||
|
||||
/**
|
||||
* An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
|
||||
*
|
||||
* Simply add the class `greedy` to any <nav> menu and it will do the rest.
|
||||
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||||
* @ver 0.0.1
|
||||
*/
|
||||
function aui_init_greedy_nav(){
|
||||
jQuery('nav.greedy').each(function(i, obj) {
|
||||
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("being-greedy")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('navbar-expand');
|
||||
|
||||
// vars
|
||||
var $vlinks = '';
|
||||
var $dDownClass = '';
|
||||
if(jQuery(this).find('.navbar-nav').length){
|
||||
if(jQuery(this).find('.navbar-nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.navbar-nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
}else if(jQuery(this).find('.nav').length){
|
||||
if(jQuery(this).find('.nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
$dDownClass = ' mt-2 ';
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
|
||||
jQuery($vlinks).append('<li class="nav-item list-unstyled ml-auto greedy-btn d-none dropdown ">' +
|
||||
'<a href="javascript:void(0)" data-toggle="dropdown" class="nav-link"><i class="fas fa-ellipsis-h"></i> <span class="greedy-count badge badge-dark badge-pill"></span></a>' +
|
||||
'<ul class="greedy-links dropdown-menu dropdown-menu-right '+$dDownClass+'"></ul>' +
|
||||
'</li>');
|
||||
|
||||
var $hlinks = jQuery(this).find('.greedy-links');
|
||||
var $btn = jQuery(this).find('.greedy-btn');
|
||||
|
||||
var numOfItems = 0;
|
||||
var totalSpace = 0;
|
||||
var closingTime = 1000;
|
||||
var breakWidths = [];
|
||||
|
||||
// Get initial state
|
||||
$vlinks.children().outerWidth(function(i, w) {
|
||||
totalSpace += w;
|
||||
numOfItems += 1;
|
||||
breakWidths.push(totalSpace);
|
||||
});
|
||||
|
||||
var availableSpace, numOfVisibleItems, requiredSpace, buttonSpace ,timer;
|
||||
|
||||
/*
|
||||
The check function.
|
||||
*/
|
||||
function check() {
|
||||
|
||||
// Get instant state
|
||||
buttonSpace = $btn.width();
|
||||
availableSpace = $vlinks.width() - 10;
|
||||
numOfVisibleItems = $vlinks.children().length;
|
||||
requiredSpace = breakWidths[numOfVisibleItems - 1];
|
||||
|
||||
// There is not enough space
|
||||
if (numOfVisibleItems > 1 && requiredSpace > availableSpace) {
|
||||
$vlinks.children().last().prev().prependTo($hlinks);
|
||||
numOfVisibleItems -= 1;
|
||||
check();
|
||||
// There is more than enough space
|
||||
} else if (availableSpace > breakWidths[numOfVisibleItems]) {
|
||||
$hlinks.children().first().insertBefore($btn);
|
||||
numOfVisibleItems += 1;
|
||||
check();
|
||||
}
|
||||
// Update the button accordingly
|
||||
jQuery($btn).find(".greedy-count").html( numOfItems - numOfVisibleItems);
|
||||
if (numOfVisibleItems === numOfItems) {
|
||||
$btn.addClass('d-none');
|
||||
} else $btn.removeClass('d-none');
|
||||
}
|
||||
|
||||
// Window listeners
|
||||
jQuery(window).resize(function() {
|
||||
check();
|
||||
});
|
||||
|
||||
// do initial check
|
||||
check();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate Select2 items.
|
||||
*/
|
||||
function aui_init_select2(){
|
||||
jQuery("select.aui-select2").select2();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to convert a time value to a "ago" time text.
|
||||
*
|
||||
* @param selector string The .class selector
|
||||
*/
|
||||
function aui_time_ago(selector) {
|
||||
|
||||
var templates = {
|
||||
prefix: "",
|
||||
suffix: " ago",
|
||||
seconds: "less than a minute",
|
||||
minute: "about a minute",
|
||||
minutes: "%d minutes",
|
||||
hour: "about an hour",
|
||||
hours: "about %d hours",
|
||||
day: "a day",
|
||||
days: "%d days",
|
||||
month: "about a month",
|
||||
months: "%d months",
|
||||
year: "about a year",
|
||||
years: "%d years"
|
||||
};
|
||||
var template = function (t, n) {
|
||||
return templates[t] && templates[t].replace(/%d/i, Math.abs(Math.round(n)));
|
||||
};
|
||||
|
||||
var timer = function (time) {
|
||||
if (!time)
|
||||
return;
|
||||
time = time.replace(/\.\d+/, ""); // remove milliseconds
|
||||
time = time.replace(/-/, "/").replace(/-/, "/");
|
||||
time = time.replace(/T/, " ").replace(/Z/, " UTC");
|
||||
time = time.replace(/([\+\-]\d\d)\:?(\d\d)/, " $1$2"); // -04:00 -> -0400
|
||||
time = new Date(time * 1000 || time);
|
||||
|
||||
var now = new Date();
|
||||
var seconds = ((now.getTime() - time) * .001) >> 0;
|
||||
var minutes = seconds / 60;
|
||||
var hours = minutes / 60;
|
||||
var days = hours / 24;
|
||||
var years = days / 365;
|
||||
|
||||
return templates.prefix + (
|
||||
seconds < 45 && template('seconds', seconds) ||
|
||||
seconds < 90 && template('minute', 1) ||
|
||||
minutes < 45 && template('minutes', minutes) ||
|
||||
minutes < 90 && template('hour', 1) ||
|
||||
hours < 24 && template('hours', hours) ||
|
||||
hours < 42 && template('day', 1) ||
|
||||
days < 30 && template('days', days) ||
|
||||
days < 45 && template('month', 1) ||
|
||||
days < 365 && template('months', days / 30) ||
|
||||
years < 1.5 && template('year', 1) ||
|
||||
template('years', years)
|
||||
) + templates.suffix;
|
||||
};
|
||||
|
||||
var elements = document.getElementsByClassName(selector);
|
||||
if (selector && elements && elements.length) {
|
||||
for (var i in elements) {
|
||||
var $el = elements[i];
|
||||
if (typeof $el === 'object') {
|
||||
$el.innerHTML = '<i class="far fa-clock"></i> ' + timer($el.getAttribute('title') || $el.getAttribute('datetime'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// update time every minute
|
||||
setTimeout(function() {
|
||||
aui_time_ago(selector);
|
||||
}, 60000);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate tooltips on the page.
|
||||
*/
|
||||
function aui_init_tooltips(){
|
||||
jQuery('[data-toggle="tooltip"]').tooltip();
|
||||
jQuery('[data-toggle="popover"]').popover();
|
||||
jQuery('[data-toggle="popover-html"]').popover({
|
||||
html: true
|
||||
});
|
||||
|
||||
// fix popover container compatibility
|
||||
jQuery('[data-toggle="popover"],[data-toggle="popover-html"]').on('inserted.bs.popover', function () {
|
||||
jQuery('body > .popover').wrapAll("<div class='bsui' />");
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate flatpickrs on the page.
|
||||
*/
|
||||
$aui_doing_init_flatpickr = false;
|
||||
function aui_init_flatpickr(){
|
||||
if ( jQuery.isFunction(jQuery.fn.flatpickr) && !$aui_doing_init_flatpickr) {
|
||||
$aui_doing_init_flatpickr = true;
|
||||
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
|
||||
}
|
||||
$aui_doing_init_flatpickr = false;
|
||||
}
|
||||
|
||||
function aui_modal($title,$body,$footer,$dismissible,$class,$dialog_class) {
|
||||
if(!$class){$class = '';}
|
||||
if(!$dialog_class){$dialog_class = '';}
|
||||
if(!$body){$body = '<div class="text-center"><div class="spinner-border" role="status"></div></div>';}
|
||||
// remove it first
|
||||
jQuery('.aui-modal').modal('hide').modal('dispose').remove();
|
||||
jQuery('.modal-backdrop').remove();
|
||||
|
||||
var $modal = '';
|
||||
|
||||
$modal += '<div class="modal aui-modal fade shadow bsui '+$class+'" tabindex="-1">'+
|
||||
'<div class="modal-dialog modal-dialog-centered '+$dialog_class+'">'+
|
||||
'<div class="modal-content">';
|
||||
|
||||
if($title) {
|
||||
$modal += '<div class="modal-header">' +
|
||||
'<h5 class="modal-title">' + $title + '</h5>';
|
||||
|
||||
if ($dismissible) {
|
||||
$modal += '<button type="button" class="close" data-dismiss="modal" aria-label="Close">' +
|
||||
'<span aria-hidden="true">×</span>' +
|
||||
'</button>';
|
||||
}
|
||||
|
||||
$modal += '</div>';
|
||||
}
|
||||
$modal += '<div class="modal-body">'+
|
||||
$body+
|
||||
'</div>';
|
||||
|
||||
if($footer){
|
||||
$modal += '<div class="modal-footer">'+
|
||||
$footer +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
$modal +='</div>'+
|
||||
'</div>'+
|
||||
'</div>';
|
||||
|
||||
jQuery('body').append($modal);
|
||||
|
||||
jQuery('.aui-modal').modal('hide').modal({
|
||||
//backdrop: 'static'
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Show / hide fields depending on conditions.
|
||||
*/
|
||||
function aui_conditional_fields(form){
|
||||
jQuery(form).find(".aui-conditional-field").each(function () {
|
||||
|
||||
var $element_require = jQuery(this).data('element-require');
|
||||
|
||||
if ($element_require) {
|
||||
|
||||
$element_require = $element_require.replace("'", "'"); // replace single quotes
|
||||
$element_require = $element_require.replace(""", '"'); // replace double quotes
|
||||
|
||||
if (aui_check_form_condition($element_require,form)) {
|
||||
jQuery(this).removeClass('d-none');
|
||||
} else {
|
||||
jQuery(this).addClass('d-none');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Check form condition
|
||||
*/
|
||||
function aui_check_form_condition(condition,form) {
|
||||
if (form) {
|
||||
condition = condition.replace(/\(form\)/g, "('"+form+"')");
|
||||
}
|
||||
return new Function("return " + condition+";")();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to determine if a element is on screen.
|
||||
*/
|
||||
jQuery.fn.aui_isOnScreen = function(){
|
||||
|
||||
var win = jQuery(window);
|
||||
|
||||
var viewport = {
|
||||
top : win.scrollTop(),
|
||||
left : win.scrollLeft()
|
||||
};
|
||||
viewport.right = viewport.left + win.width();
|
||||
viewport.bottom = viewport.top + win.height();
|
||||
|
||||
var bounds = this.offset();
|
||||
bounds.right = bounds.left + this.outerWidth();
|
||||
bounds.bottom = bounds.top + this.outerHeight();
|
||||
|
||||
return (!(viewport.right < bounds.left || viewport.left > bounds.right || viewport.bottom < bounds.top || viewport.top > bounds.bottom));
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Maybe show multiple carousel items if set to do so.
|
||||
*/
|
||||
function aui_carousel_maybe_show_multiple_items($carousel){
|
||||
var $items = {};
|
||||
var $item_count = 0;
|
||||
|
||||
// maybe backup
|
||||
if(!jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).append('<div class="carousel-inner-original d-none">'+jQuery($carousel).find('.carousel-inner').html()+'</div>');
|
||||
}
|
||||
|
||||
// Get the original items html
|
||||
jQuery($carousel).find('.carousel-inner-original .carousel-item').each(function () {
|
||||
$items[$item_count] = jQuery(this).html();
|
||||
$item_count++;
|
||||
});
|
||||
|
||||
// bail if no items
|
||||
if(!$item_count){return;}
|
||||
|
||||
if(jQuery(window).width() <= 576){
|
||||
// maybe restore original
|
||||
if(jQuery($carousel).find('.carousel-inner').hasClass('aui-multiple-items') && jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).find('.carousel-inner').removeClass('aui-multiple-items').html(jQuery($carousel).find('.carousel-inner-original').html());
|
||||
jQuery($carousel).find(".carousel-indicators li").removeClass("d-none");
|
||||
}
|
||||
|
||||
}else{
|
||||
// new items
|
||||
var $md_count = jQuery($carousel).data('limit_show');
|
||||
var $new_items = '';
|
||||
var $new_items_count = 0;
|
||||
var $new_item_count = 0;
|
||||
var $closed = true;
|
||||
Object.keys($items).forEach(function(key,index) {
|
||||
|
||||
// close
|
||||
if(index != 0 && Number.isInteger(index/$md_count) ){
|
||||
$new_items += '</div></div>';
|
||||
$closed = true;
|
||||
}
|
||||
|
||||
// open
|
||||
if(index == 0 || Number.isInteger(index/$md_count) ){
|
||||
$active = index == 0 ? 'active' : '';
|
||||
$new_items += '<div class="carousel-item '+$active+'"><div class="row m-0">';
|
||||
$closed = false;
|
||||
$new_items_count++;
|
||||
$new_item_count = 0;
|
||||
}
|
||||
|
||||
// content
|
||||
$new_items += '<div class="col pr-1 pl-0">'+$items[index]+'</div>';
|
||||
$new_item_count++;
|
||||
|
||||
|
||||
});
|
||||
|
||||
// close if not closed in the loop
|
||||
if(!$closed){
|
||||
// check for spares
|
||||
if($md_count-$new_item_count > 0){
|
||||
$placeholder_count = $md_count-$new_item_count;
|
||||
while($placeholder_count > 0){
|
||||
$new_items += '<div class="col pr-1 pl-0"></div>';
|
||||
$placeholder_count--;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$new_items += '</div></div>';
|
||||
}
|
||||
|
||||
// insert the new items
|
||||
jQuery($carousel).find('.carousel-inner').addClass('aui-multiple-items').html($new_items);
|
||||
|
||||
// fix any lazyload images in the active slider
|
||||
jQuery($carousel).find('.carousel-item.active img').each(function () {
|
||||
// fix the srcset
|
||||
if(real_srcset = jQuery(this).attr("data-srcset")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("srcset",real_srcset);
|
||||
}
|
||||
// fix the src
|
||||
if(real_src = jQuery(this).attr("data-src")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("src",real_src);
|
||||
}
|
||||
});
|
||||
|
||||
// maybe fix carousel indicators
|
||||
$hide_count = $new_items_count-1;
|
||||
jQuery($carousel).find(".carousel-indicators li:gt("+$hide_count+")").addClass("d-none");
|
||||
}
|
||||
|
||||
// trigger a global action to say we have
|
||||
jQuery( window ).trigger( "aui_carousel_multiple" );
|
||||
}
|
||||
|
||||
/**
|
||||
* Init Multiple item carousels.
|
||||
*/
|
||||
function aui_init_carousel_multiple_items(){
|
||||
jQuery(window).resize(function(){
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
});
|
||||
|
||||
// run now
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Allow navs to use multiple sub menus.
|
||||
*/
|
||||
function init_nav_sub_menus(){
|
||||
|
||||
jQuery('.navbar-multi-sub-menus').each(function(i, obj) {
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("has-sub-sub-menus")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('has-sub-sub-menus');
|
||||
|
||||
jQuery(this).find( '.dropdown-menu a.dropdown-toggle' ).on( 'click', function ( e ) {
|
||||
var $el = jQuery( this );
|
||||
$el.toggleClass('active-dropdown');
|
||||
var $parent = jQuery( this ).offsetParent( ".dropdown-menu" );
|
||||
if ( !jQuery( this ).next().hasClass( 'show' ) ) {
|
||||
jQuery( this ).parents( '.dropdown-menu' ).first().find( '.show' ).removeClass( "show" );
|
||||
}
|
||||
var $subMenu = jQuery( this ).next( ".dropdown-menu" );
|
||||
$subMenu.toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parent( "li" ).toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parents( 'li.nav-item.dropdown.show' ).on( 'hidden.bs.dropdown', function ( e ) {
|
||||
jQuery( '.dropdown-menu .show' ).removeClass( "show" );
|
||||
$el.removeClass('active-dropdown');
|
||||
} );
|
||||
|
||||
if ( !$parent.parent().hasClass( 'navbar-nav' ) ) {
|
||||
$el.next().addClass('position-relative border-top border-bottom');
|
||||
}
|
||||
|
||||
return false;
|
||||
} );
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Initiate all AUI JS.
|
||||
*/
|
||||
function aui_init(){
|
||||
// nav menu submenus
|
||||
init_nav_sub_menus();
|
||||
|
||||
// init tooltips
|
||||
aui_init_tooltips();
|
||||
|
||||
// init select2
|
||||
aui_init_select2();
|
||||
|
||||
// init flatpickr
|
||||
aui_init_flatpickr();
|
||||
|
||||
// init Greedy nav
|
||||
aui_init_greedy_nav();
|
||||
|
||||
// Set times to time ago
|
||||
aui_time_ago('timeago');
|
||||
|
||||
// init multiple item carousels
|
||||
aui_init_carousel_multiple_items();
|
||||
}
|
||||
|
||||
// run on window loaded
|
||||
jQuery(window).on("load",function() {
|
||||
aui_init();
|
||||
});
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<link rel="https://api.w.org/" href="https://ak-21.de/index.php/wp-json/"><link rel="alternate" type="application/json" href="https://web.archive.org/web/20210625211526/https://ak-21.de/index.php/wp-json/wp/v2/pages/2"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://ak-21.de/xmlrpc.php?rsd">
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://ak-21.de/wp-includes/wlwmanifest.xml">
|
||||
<meta name="generator" content="WordPress 5.7.2">
|
||||
<link rel="canonical" href="https://web.archive.org/web/20210625211526/https://ak-21.de/">
|
||||
<link rel="shortlink" href="https://web.archive.org/web/20210625211526/https://ak-21.de/">
|
||||
<link rel="alternate" type="application/json+oembed" href="https://web.archive.org/web/20210625211526/https://ak-21.de/index.php/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fak-21.de%2F">
|
||||
<link rel="alternate" type="text/xml+oembed" href="https://web.archive.org/web/20210625211526/https://ak-21.de/index.php/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fak-21.de%2F&format=xml">
|
||||
<style type="text/css">img#wpstats{display:none}</style>
|
||||
<style type="text/css">
|
||||
/* Colors */
|
||||
|
||||
</style>
|
||||
<style id="fit-vids-style">.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}</style></head>
|
||||
|
||||
<body class="home page-template-default page page-id-2 no-sidebar footer-0 has-avatars"><!-- BEGIN WAYBACK TOOLBAR INSERT -->
|
||||
<script>__wm.rw(0);</script>
|
||||
<div id="wm-ipp-base" lang="en" style="display: block; direction: ltr; height: 67px;" toolbar-mode="auto"><template shadowrootmode="closed"><div id="wm-ipp" style="position:fixed;left:0;top:0;right:0;">
|
||||
<div id="donato" style="position:relative;width:100%;height:0;">
|
||||
<div id="donato-base">
|
||||
<iframe id="donato-if" src="https://archive.org/includes/donate.php?as_page=1&platform=wb&referer=https%3A//web.archive.org/web/20210625211526/https%3A//ak-21.de/" scrolling="no" frameborder="0" style="width:100%; height:100%">
|
||||
</iframe>
|
||||
</div>
|
||||
</div><div id="wm-ipp-inside">
|
||||
<div id="wm-toolbar" style="position:relative;display:flex;flex-flow:row nowrap;justify-content:space-between;" nav="async">
|
||||
<div id="wm-logo" style="/*width:110px;*/padding-top:12px;">
|
||||
<a href="https://web.archive.org/web/" title="Wayback Machine home page"><img src="https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-200.png" srcset="https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-100.png, https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-150.png 1.5x, https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-200.png 2x" alt="Wayback Machine" style="width:100px" border="0"></a>
|
||||
</div>
|
||||
<div class="c" style="display:flex;flex-flow:column nowrap;justify-content:space-between;flex:1;">
|
||||
<form class="u" style="display:flex;flex-direction:row;flex-wrap:nowrap;" target="_top" method="get" action="https://web.archive.org/web/submit" name="wmtb" id="wmtb"><input type="text" name="url" id="wmtbURL" value="https://ak-21.de/" onfocus="this.focus();this.select();" style="flex:1;" autocomplete="off"><input type="hidden" name="type" value="replay"><input type="hidden" name="date" value="20210625211526"><input type="submit" value="Go">
|
||||
</form>
|
||||
<div style="display:flex;flex-flow:row nowrap;align-items:flex-end;">
|
||||
<div class="s" id="wm-nav-captures" style="flex:1;"><a class="t" href="https://web.archive.org/web/*/https://ak-21.de/" title="See a list of every capture for this URL">2 captures</a><div class="r" title="Timespan for captures of this URL">25 Jun 2021 - 25 Nov 2021</div></div>
|
||||
<div class="k">
|
||||
<a href="https://web.archive.org/web/20210625211526/https://ak-21.de/" id="wm-graph-anchor">
|
||||
<div id="wm-ipp-sparkline" title="Explore captures for this URL" style="position: relative">
|
||||
<canvas id="wm-sparkline-canvas" width="775" height="27" border="0"></canvas>
|
||||
<div class="yt" style="display: none; width: 25px; height: 27px;"></div><div class="mt" style="display: none; width: 2px; height: 27px;"></div></div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="n">
|
||||
<table>
|
||||
<tbody>
|
||||
<!-- NEXT/PREV MONTH NAV AND MONTH INDICATOR -->
|
||||
<tr class="m">
|
||||
<td class="b" nowrap="nowrap">May</td>
|
||||
<td class="c" id="displayMonthEl" title="You are here: 21:15:26 Jun 25, 2021">JUN</td>
|
||||
<td class="f" nowrap="nowrap"><a href="https://web.archive.org/web/20211125002226/https://ak-21.de/" title="00:22:26 Nov 25, 2021">Nov</a></td>
|
||||
</tr>
|
||||
<!-- NEXT/PREV CAPTURE NAV AND DAY OF MONTH INDICATOR -->
|
||||
<tr class="d">
|
||||
<td class="b" nowrap="nowrap"><span class="ta"></span></td>
|
||||
<td class="c" id="displayDayEl" style="width:34px;font-size:22px;white-space:nowrap;" title="You are here: 21:15:26 Jun 25, 2021">25</td>
|
||||
<td class="f" nowrap="nowrap"><a href="https://web.archive.org/web/20211125002226/https://ak-21.de/" title="00:22:26 Nov 25, 2021"><span class="ta"></span></a></td>
|
||||
</tr>
|
||||
<!-- NEXT/PREV YEAR NAV AND YEAR INDICATOR -->
|
||||
<tr class="y">
|
||||
<td class="b" nowrap="nowrap">2020</td>
|
||||
<td class="c" id="displayYearEl" title="You are here: 21:15:26 Jun 25, 2021">2021</td>
|
||||
<td class="f" nowrap="nowrap">2022</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="r" style="display:flex;flex-flow:column nowrap;align-items:flex-end;justify-content:space-between;">
|
||||
<div id="wm-btns" style="text-align:right;height:23px;">
|
||||
<span class="xxs">
|
||||
<div id="wm-save-snapshot-success">success</div>
|
||||
<div id="wm-save-snapshot-fail">fail</div>
|
||||
<a id="wm-save-snapshot-open" href="https://web.archive.org/web/20210625211526/https://ak-21.de/#" title="Share via My Web Archive" style="display: inline-block;">
|
||||
<span class="iconochive-web"></span>
|
||||
</a>
|
||||
<a href="https://archive.org/account/login.php" title="Sign In" id="wm-sign-in" style="display: none;">
|
||||
<span class="iconochive-person"></span>
|
||||
</a>
|
||||
<span id="wm-save-snapshot-in-progress" class="iconochive-web"></span>
|
||||
</span>
|
||||
<a class="xxs" href="https://help.archive.org/help/category/the-wayback-machine/" title="Get some help using the Wayback Machine" style="top:-6px;"><span class="iconochive-question" style="color:rgb(87,186,244);font-size:160%;"></span></a>
|
||||
<a id="wm-tb-close" href="https://web.archive.org/web/20210625211526/https://ak-21.de/#close" style="top:-2px;" title="Close the toolbar"><span class="iconochive-remove-circle" style="color:#888888;font-size:240%;"></span></a>
|
||||
</div>
|
||||
<div id="wm-share" class="xxs">
|
||||
<a href="https://web.archive.org/web/20210625211526/http://web.archive.org/screenshot/https://ak-21.de/" id="wm-screenshot" title="screenshot" style="visibility: hidden;">
|
||||
<span class="wm-icon-screen-shot"></span>
|
||||
</a>
|
||||
<a href="https://web.archive.org/web/20210625211526/https://ak-21.de/#" id="wm-video" title="video">
|
||||
<span class="iconochive-movies"></span>
|
||||
</a>
|
||||
<a id="wm-share-facebook" href="https://web.archive.org/web/20210625211526/https://ak-21.de/#" data-url="https://web.archive.org/web/20210625211526/https://ak-21.de/" title="Share on Facebook" style="margin-right:5px;" target="_blank"><span class="iconochive-facebook" style="color:#3b5998;font-size:160%;"></span></a>
|
||||
<a id="wm-share-twitter" href="https://web.archive.org/web/20210625211526/https://ak-21.de/#" data-url="https://web.archive.org/web/20210625211526/https://ak-21.de/" title="Share on Twitter" style="margin-right:5px;" target="_blank"><span class="iconochive-twitter" style="color:#1dcaff;font-size:160%;"></span></a>
|
||||
</div>
|
||||
<div style="padding-right:2px;text-align:right;white-space:nowrap;">
|
||||
<a id="wm-expand" class="wm-btn wm-closed" href="https://web.archive.org/web/20210625211526/https://ak-21.de/#expand"><span id="wm-expand-icon" class="iconochive-down-solid"></span> <span class="xxs" style="font-size:80%;">About this capture</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wm-capinfo" style="border-top:1px solid #777;display:none; overflow: hidden">
|
||||
<div id="wm-capinfo-notice" source="api"></div>
|
||||
<div id="wm-capinfo-collected-by">
|
||||
<div style="background-color:#666;color:#fff;font-weight:bold;text-align:center;padding:2px 0;">COLLECTED BY</div>
|
||||
<div style="padding:3px;position:relative" id="wm-collected-by-content">
|
||||
<div style="display:inline-block;vertical-align:top;width:49%;">
|
||||
<span class="c-logo" style="background-image:url(https://archive.org/services/img/save-page-now)"></span>
|
||||
<div>Collection: <a style="color:#33f;" href="https://archive.org/details/save-page-now" target="_new"><span class="wm-title">Save Page Now</span></a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wm-capinfo-timestamps">
|
||||
<div style="background-color:#666;color:#fff;font-weight:bold;text-align:center;padding:2px 0;" title="Timestamps for the elements of this page">TIMESTAMPS</div>
|
||||
<div>
|
||||
<div id="wm-capresources" style="margin:0 5px 5px 5px;max-height:250px;overflow-y:scroll !important"></div>
|
||||
<div id="wm-capresources-loading" style="text-align:left;margin:0 20px 5px 5px;display:none"><img src="https://web-static.archive.org/_static/images/loading.gif" alt="loading"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div></div></div><link rel="stylesheet" type="text/css" href="./Ak21 – Jahrbuch der JHS_files/banner-styles.css"><link rel="stylesheet" type="text/css" href="./Ak21 – Jahrbuch der JHS_files/iconochive.css"><div class="wb-autocomplete-suggestions " style="left: 135px; top: 23px; width: 1029px; display: none;"><div class="wb-autocomplete-suggestion selected" data-val="https://ak-21.de/index.php"><b>https://ak-21.de/index.php</b></div></div></template>
|
||||
</div><div id="wm-ipp-print">The Wayback Machine - https://web.archive.org/web/20210625211526/https://ak-21.de/</div>
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
__wm.bt(775,27,25,2,"web","https://ak-21.de/","20210625211526",1996,"https://web-static.archive.org/_static/",["https://web-static.archive.org/_static/css/banner-styles.css?v=1utQkbB3","https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv"], false);
|
||||
__wm.rw(1);
|
||||
//]]></script>
|
||||
<!-- END WAYBACK TOOLBAR INSERT -->
|
||||
|
||||
<div id="page" class="hfeed site">
|
||||
<a class="skip-link screen-reader-text" href="https://web.archive.org/web/20210625211526/https://ak-21.de/#content">Springe zum Inhalt</a>
|
||||
|
||||
<header id="masthead" class="site-header">
|
||||
|
||||
<div class="site-branding">
|
||||
<h1 class="site-title"><a href="https://web.archive.org/web/20210625211526/https://ak-21.de/" rel="home">Ak21</a></h1>
|
||||
<div class="site-description">Jahrbuch der JHS</div>
|
||||
</div><!-- .site-branding -->
|
||||
|
||||
<nav id="site-navigation" class="main-navigation">
|
||||
<button class="menu-toggle"><span class="menu-text">Menü</span></button>
|
||||
<div class="menu-normal-container"><ul id="menu-normal" class="menu nav-menu"><li id="menu-item-207" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-207"><a href="index.php/steckbriefe/index.html">Steckbriefe</a></li>
|
||||
<li id="menu-item-208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-208"><a href="index.php/umfrage-ergebnisse/index.html">Umfrage Ergebnisse</a></li>
|
||||
<li id="menu-item-213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-213"><a href="index.php/gaestebuch/index.html">Gästebuch</a></li>
|
||||
</ul></div> <form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<span class="screen-reader-text">Suche nach:</span>
|
||||
<input type="search" class="search-field" placeholder="Suche …" value="" name="s">
|
||||
</label>
|
||||
<input type="submit" class="search-submit" value="Suche">
|
||||
</form> </nav><!-- #site-navigation -->
|
||||
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="content" class="site-content">
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main">
|
||||
|
||||
|
||||
|
||||
<article id="post-2" class="post-2 page type-page status-publish hentry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-title"></h2>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
|
||||
<h6 class="has-text-align-center">Zeit Vergangen seit dem Abschluss:</h6>
|
||||
|
||||
|
||||
<div class="widget shailan_CountdownWidget">
|
||||
<div id="shailan-countdown--1_1" class="shailan-countdown--1 countdown hasCountdown" style=" margin:0px auto; "><span class="countdown_row countdown_show5"><span class="countdown_section"><span class="countdown_amount">1</span><br>Woche</span><span class="countdown_section"><span class="countdown_amount">0</span><br>Tage</span><span class="countdown_section"><span class="countdown_amount">6</span><br>Stunden</span><span class="countdown_section"><span class="countdown_amount">16</span><br>Minuten</span><span class="countdown_section"><span class="countdown_amount">31</span><br>Sekunden</span></span></div>
|
||||
|
||||
<div style=" margin:0px auto; "><small><a href="https://web.archive.org/web/20210625211526/https://wpassist.me/plugins/countdown/" title="WordPress Countdown Plugin" class="countdown_infolink">i</a></small></div>
|
||||
<script>
|
||||
(function($){
|
||||
$(document).ready(function($) {
|
||||
var event_month = 6 - 1;
|
||||
$('#shailan-countdown--1_1').countdown({
|
||||
since: new Date(2021, event_month, 18, 15, 00, 0, 0),
|
||||
description: '',
|
||||
format: 'yowdHMS' });
|
||||
});
|
||||
})(jQuery);
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<p class="has-text-align-center">Nun haben wir es nach 10 Jahren Schule geschafft. Wir halten unseren Abschluss in den Händen und das darf auch gefeiert werden. Doch Trotz all der Freude sind viele von uns auch etwas wehmütig darüber, dass diese oft recht schöne Zeit nun Vorbei ist. Aber wir werden hoffentlich zumindest die Mitschüler und besonders die schönen Momente in Erinnerung behalten. Genau Deswegen haben wir dieses Online-Jahrbuch erstellt. Wir hoffen es gefällt euch.</p>
|
||||
|
||||
|
||||
|
||||
<hr class="wp-block-separator">
|
||||
|
||||
|
||||
|
||||
<h2 class="has-text-align-center">Ein paar Worte….</h2>
|
||||
|
||||
|
||||
|
||||
<blockquote class="wp-block-quote has-text-align-center is-style-default"><p>Liebe Schülerinnen und Schüler, 0,000 000 1 m. Das ist die Größe eines einzelnen Corona-Virus. Dieses kleine Ding hat in den letzten Jahren maßgeblich euren und unseren Schulalltag beeinflusst. </p><p>Wir haben uns anfangs durch Fernunterrichte und später dann durch Unterrichte unter CoronaBedingungen kämpfen müssen. Dazu gehörten Aufgaben über IServ und die zwei Tests pro Woche. Wir saßen mit Abstand und mit Masken in den Klassen. Wir haben uns stets die Hände an den Ein- und Ausgängen desinfiziert (Ihr mal mehr, mal weniger ). Wir haben uns auf einen neuen Pausenhof einstellen müssen und wir haben uns an eine Lüftungsregelung gewöhnen müssen.</p><p>Aber auch das habt ihr geschafft. Die Lage ließ es sogar zu, dass wir in dieser Woche endlich was als Klasse unternehmen konnten. Montag ging’s auf den Sportplatz, um gegen die anderen 10er anzutreten. Gewonnen hat, mit deutlichem Abstand, die 10B. Herzlichen Glückwunsch dazu. Dienstag konnten wir bei Familie Borger zuhause grillen, danke dafür; Abschließen konnten wir unsere gemeinsamen Aktivitäten mit dem Besuch im Kletterpark gestern.</p><p>Aber: Diese Zeit an der Joseph-Hennewig-Schule ist nun leider für euch vorbei. Ich hoffe, dass an euren neuen „Schaffensstätten“ ähnlich gut auf eure Gesundheit geachtet wird und mit ein bisschen Glück der ganze Virus-Kram bald vorbei ist. Ich wünsche euch viel Erfolg im weiteren (Schul-)Leben und würde mich auf die ein oder andere Rückmeldung in ein paar Jahren freuen.</p><cite>Simon Reinermann 18.06.2021</cite></blockquote>
|
||||
|
||||
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
|
||||
<blockquote class="wp-block-quote has-text-align-center"><p>Lieber 10er Jahrgang! Nun ist es soweit, ihr werdet entlassen und geht euren Weg, jeder in seine Richtung! Als wir am Einschulungstag zusammen im Klassenraum saßen, dachten wir, dass noch eine ewig lange Zeit vor uns liegt! Eine Zeit, in der wir lernten, Spaß hatten, diskutieren und immer wieder nach vorne geblickt haben: zum Ziel, zum Schulabschluss, den ihr jetzt erreicht habt! Doch wie wir alle festgestellt haben, ist die Zeit sehr schnell vergangen! Einige von euch sind erst später in den Jahrgang dazu gekommen, aber eins war in unserer Stufe immer klar: Jeder und jede wird willkommen geheißen und integriert. Auf diesem Weg habt ihr es geschafft, ein ausgesprochen sympathischer und toleranter Jahrgang zu sein, weiter so! In diesem Sinne wünsche ich jedem Einzelnen von euch viele weitere gute Stationen in eurem Leben, nette Menschen, die euch begleiten und keine Angst vor neuen Herausforderungen! Alles Liebe eure ehemalige Klassenlehrerin P. Ziegner-Eissing</p></blockquote>
|
||||
|
||||
|
||||
|
||||
<blockquote class="wp-block-quote has-text-align-center"><p>Liebe Noch-10er, leider könnt auch ihr keinen richtigen Abschluss feiern. Das tut mir sehr leid, da ich mich gerne gebührend von euch verabschiedet hätte. Leider konnte ich nicht alle aus eurer Stufe kennenlernen, aber die, die ich kennenlernen durfte, haben mir sehr viel Spaß an der „Arbeit“ gemacht!!! Ich hoffe, ihr behaltet einiges in guter Erinnerung und seid über das, was euch in den letzten Jahren vielleicht erregt und aufgeregt habt, nicht zu lange sauer… Wenn doch, hmmmm…. dann hättet ihr es mir sagen sollen! … grins… Euch allen alles Gute und haltet durch! Et wird nicht besser!!! Liebe Grüße und vielleicht sieht man sich ja doch mal in unserer schönen kleinen Stadt…</p><cite>Bernd Marwitz</cite></blockquote>
|
||||
|
||||
|
||||
|
||||
<blockquote class="wp-block-quote has-text-align-center"><p>Liebe 10er! Euer Jahrgang wird mir besonders in Erinnerung bleiben, da ich zum gleichen Zeitpunkt an die JHS gekommen bin wie ihr. Ich kann mich noch sehr gut an eure ersten Tage in der Schule erinnern. In Klasse 7 habe ich dann eine eigene Klasse bekommen – auch zum ersten Mal. Das war eine ganz schön turbulente Zeit die wir zusammen verbracht haben. Die Klasse musste ja erstmal in der neuen Konstellation zusammenfinden. Das war nicht immer einfach. Ich erinnere mich aber auch an viele schöne Dinge. An Erleuchtungen darüber, dass auch Haltern ein Kanalisationssystem besitzt, besondere Gespräche und auch schöne Unternehmungen. Ich freue mich, heute mit euch euren offiziellen Abschluss zu feiern und bin mir sicher, dass ihr trotz der Lage heute das Beste daraus macht und den Tag genießen werdet. Für eure weitere Zukunft wünsche ich euch alles erdenklich Gute! Mögen eure Wünsche und Träume in Erfüllung gehen! Eure Lehrerin O. Nordbruch</p></blockquote>
|
||||
|
||||
|
||||
|
||||
<blockquote class="wp-block-quote has-text-align-center"><p>Lieber Abschlussjahrgang, ihr seid in jeder Hinsicht ein ganz besonderer Jahrgang. Einige von euch kenne ich seit der fünften Klasse und es hat mir viel Freude gemacht, euch zu unterrichten (zumindest meistens :-)). Euer Jahrgang ist geprägt von vielen besonderen Menschen und ich bin mir sicher, dass jeder von euch seinen Weg finden wird. Für die nächsten Schritte wünsche ich euch Glück, Kraft, Erfolg und das richtige Bauchgefühl. Ich hätte gerne mit euch gefeiert und auf euren Erfolg angestoßen, aber ihr werdet bestimmt das Beste aus eurem letzten Schultag machen. Alles Gute für eure Zukunft.</p><cite>Christine Heming</cite></blockquote>
|
||||
|
||||
|
||||
|
||||
<h2> </h2>
|
||||
|
||||
|
||||
|
||||
<p></p>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-## -->
|
||||
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
|
||||
<footer id="colophon" class="site-footer">
|
||||
|
||||
|
||||
<div class="site-bottom">
|
||||
|
||||
<div class="site-info">
|
||||
<div class="site-copyright">
|
||||
© 2021 <a href="https://web.archive.org/web/20210625211526/https://ak-21.de/" rel="home">Ak21</a>
|
||||
</div><!-- .site-copyright -->
|
||||
<div class="site-credit">
|
||||
Powered by <a href="https://web.archive.org/web/20210625211526/https://de.wordpress.org/">WordPress</a> <span class="site-credit-sep"> | </span>
|
||||
Theme: <a href="https://web.archive.org/web/20210625211526/http://themegraphy.com/wordpress-themes/graphy/">Graphy</a> von Themegraphy </div><!-- .site-credit -->
|
||||
</div><!-- .site-info -->
|
||||
|
||||
</div><!-- .site-bottom -->
|
||||
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<style>html{font-size:16px;}</style><script type="text/javascript" id="ce4wp_form_submit-js-extra">
|
||||
/* <![CDATA[ */
|
||||
var ce4wp_form_submit_data = {"siteUrl":"https:\/\/web.archive.org\/web\/20210625211526\/https:\/\/ak-21.de","url":"https:\/\/web.archive.org\/web\/20210625211526\/https:\/\/ak-21.de\/wp-admin\/admin-ajax.php","nonce":"9cb75718f3","listNonce":"3f4360f3ac"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/submit.js" id="ce4wp_form_submit-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/photon.min.js" id="jetpack-photon-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/jquery.fitvids.js" id="fitvids-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/skip-link-focus-fix.js" id="graphy-skip-link-focus-fix-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/navigation.js" id="graphy-navigation-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/doubletaptogo.min.js" id="double-tap-to-go-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/functions.js" id="graphy-functions-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/jquery.countdown.min.js" id="countdown-js"></script>
|
||||
<script type="text/javascript" src="./Ak21 – Jahrbuch der JHS_files/wp-embed.min.js" id="wp-embed-js"></script>
|
||||
<script src="./Ak21 – Jahrbuch der JHS_files/e-202125.js" defer=""></script>
|
||||
<script>
|
||||
_stq = window._stq || [];
|
||||
_stq.push([ 'view', {v:'ext',j:'1:9.8.1',blog:'194733867',post:'2',tz:'0',srv:'ak-21.de'} ]);
|
||||
_stq.push([ 'clickTrackerInit', '194733867', '2' ]);
|
||||
</script>
|
||||
|
||||
<script>(function($) {
|
||||
$.countdown.regional['custom'] = {
|
||||
labels: [
|
||||
'Jahre',
|
||||
'Monate',
|
||||
'Wochen',
|
||||
'Tage',
|
||||
'Stunden',
|
||||
'Minuten',
|
||||
'Sekunden'
|
||||
],
|
||||
labels1: [
|
||||
'Jahr',
|
||||
'Monat',
|
||||
'Woche',
|
||||
'Tag',
|
||||
'Stunde',
|
||||
'Minute',
|
||||
'Sekunde'
|
||||
],
|
||||
compactLabels: ['y', 'a', 'h', 'g'],
|
||||
whichLabels: null,
|
||||
timeSeparator: ':',
|
||||
isRTL: false
|
||||
};
|
||||
$.countdown.setDefaults($.countdown.regional['custom']);
|
||||
})(jQuery);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="clearly-root"><iframe id="clearly-container" referrerpolicy="origin-when-cross-origin" allowfullscreen="" src="./Ak21 – Jahrbuch der JHS_files/saved_resource.html"></iframe></div></body></html>
|
||||
@@ -0,0 +1 @@
|
||||
<html><head></head><body>{"version":"20210604","show_thumbnails":false,"show_date":true,"show_context":true,"layout":"grid","headline":"\u00c4hnliche Beitr\u00e4ge","items":[]}</body></html>
|
||||
@@ -0,0 +1 @@
|
||||
<html><head></head><body>{"version":"20210604","show_thumbnails":false,"show_date":true,"show_context":true,"layout":"grid","headline":"\u00c4hnliche Beitr\u00e4ge","items":[]}</body></html>
|
||||
@@ -0,0 +1 @@
|
||||
<html><head></head><body>{"version":"20210604","show_thumbnails":false,"show_date":true,"show_context":true,"layout":"grid","headline":"\u00c4hnliche Beitr\u00e4ge","items":[]}</body></html>
|
||||
@@ -0,0 +1 @@
|
||||
<html><head></head><body>{"version":"20210604","show_thumbnails":false,"show_date":true,"show_context":true,"layout":"grid","headline":"\u00c4hnliche Beitr\u00e4ge","items":[]}</body></html>
|
||||
@@ -0,0 +1,951 @@
|
||||
<!DOCTYPE html><html lang="de-DE"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="pingback" href="../../../xmlrpc.php">
|
||||
<title>admin – Ak21</title>
|
||||
<meta name="robots" content="max-image-preview:large">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Feed" href="../../feed/index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Kommentar-Feed" href="../../comments/feed/index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Beiträge nach admin Feed" href="feed/index.html">
|
||||
<script type="text/javascript">
|
||||
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/ak-21.de\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"}};
|
||||
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
|
||||
</script>
|
||||
<style type="text/css">
|
||||
img.wp-smiley,
|
||||
img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
</style>
|
||||
<style type="text/css">
|
||||
.hasCountdown{text-shadow:transparent 0 1px 1px;overflow:hidden;padding:5px}
|
||||
.countdown_rtl{direction:rtl}
|
||||
.countdown_holding span{background-color:#ccc}
|
||||
.countdown_row{clear:both;width:100%;text-align:center}
|
||||
.countdown_show1 .countdown_section{width:98%}
|
||||
.countdown_show2 .countdown_section{width:48%}
|
||||
.countdown_show3 .countdown_section{width:32.5%}
|
||||
.countdown_show4 .countdown_section{width:24.5%}
|
||||
.countdown_show5 .countdown_section{width:19.5%}
|
||||
.countdown_show6 .countdown_section{width:16.25%}
|
||||
.countdown_show7 .countdown_section{width:14%}
|
||||
.countdown_section{display:block;float:left;font-size:75%;text-align:center;margin:3px 0}
|
||||
.countdown_amount{font-size:200%}
|
||||
.countdown_descr{display:block;width:100%}
|
||||
a.countdown_infolink{display:block;border-radius:10px;width:14px;height:13px;float:right;font-size:9px;line-height:13px;font-weight:700;text-align:center;position:relative;top:-15px;border:1px solid}
|
||||
#countdown-preview{padding:10px}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ayecode-ui-css" href="../../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css" type="text/css" media="all">
|
||||
<style id="ayecode-ui-inline-css" type="text/css">
|
||||
|
||||
body.modal-open #wpadminbar{z-index:999}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" id="wp-block-library-css" href="../../../c/5.7.2/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
|
||||
<style id="wp-block-library-inline-css" type="text/css">
|
||||
.has-text-align-justify{text-align:justify;}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ce4wp-subscribe-style-css" href="../../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/subscribe.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-font-css" href="../../../css/index.html" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="genericons-css" href="../../../p/jetpack/9.8.1/_inc/genericons/genericons/genericons.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="normalize-css" href="../../../wp-content/themes/graphy/css/normalize.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-style-css" href="../../../wp-content/themes/graphy/style.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="../../../releases/v5.15.3/css/all.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jetpack_css-css" href="../../../p/jetpack/9.8.1/css/jetpack.css" type="text/css" media="all">
|
||||
<script type="text/javascript" src="../../../c/5.7.2/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
|
||||
<script type="text/javascript" src="../../../c/5.7.2/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js" id="select2-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/bootstrap.bundle.min.js" id="bootstrap-js-bundle-js"></script>
|
||||
<script type="text/javascript" id="bootstrap-js-bundle-js-after">
|
||||
|
||||
|
||||
/**
|
||||
* An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
|
||||
*
|
||||
* Simply add the class `greedy` to any <nav> menu and it will do the rest.
|
||||
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||||
* @ver 0.0.1
|
||||
*/
|
||||
function aui_init_greedy_nav(){
|
||||
jQuery('nav.greedy').each(function(i, obj) {
|
||||
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("being-greedy")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('navbar-expand');
|
||||
|
||||
// vars
|
||||
var $vlinks = '';
|
||||
var $dDownClass = '';
|
||||
if(jQuery(this).find('.navbar-nav').length){
|
||||
if(jQuery(this).find('.navbar-nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.navbar-nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
}else if(jQuery(this).find('.nav').length){
|
||||
if(jQuery(this).find('.nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
$dDownClass = ' mt-2 ';
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
|
||||
jQuery($vlinks).append('<li class="nav-item list-unstyled ml-auto greedy-btn d-none dropdown ">' +
|
||||
'<a href="javascript:void(0)" data-toggle="dropdown" class="nav-link"><i class="fas fa-ellipsis-h"></i> <span class="greedy-count badge badge-dark badge-pill"></span></a>' +
|
||||
'<ul class="greedy-links dropdown-menu dropdown-menu-right '+$dDownClass+'"></ul>' +
|
||||
'</li>');
|
||||
|
||||
var $hlinks = jQuery(this).find('.greedy-links');
|
||||
var $btn = jQuery(this).find('.greedy-btn');
|
||||
|
||||
var numOfItems = 0;
|
||||
var totalSpace = 0;
|
||||
var closingTime = 1000;
|
||||
var breakWidths = [];
|
||||
|
||||
// Get initial state
|
||||
$vlinks.children().outerWidth(function(i, w) {
|
||||
totalSpace += w;
|
||||
numOfItems += 1;
|
||||
breakWidths.push(totalSpace);
|
||||
});
|
||||
|
||||
var availableSpace, numOfVisibleItems, requiredSpace, buttonSpace ,timer;
|
||||
|
||||
/*
|
||||
The check function.
|
||||
*/
|
||||
function check() {
|
||||
|
||||
// Get instant state
|
||||
buttonSpace = $btn.width();
|
||||
availableSpace = $vlinks.width() - 10;
|
||||
numOfVisibleItems = $vlinks.children().length;
|
||||
requiredSpace = breakWidths[numOfVisibleItems - 1];
|
||||
|
||||
// There is not enough space
|
||||
if (numOfVisibleItems > 1 && requiredSpace > availableSpace) {
|
||||
$vlinks.children().last().prev().prependTo($hlinks);
|
||||
numOfVisibleItems -= 1;
|
||||
check();
|
||||
// There is more than enough space
|
||||
} else if (availableSpace > breakWidths[numOfVisibleItems]) {
|
||||
$hlinks.children().first().insertBefore($btn);
|
||||
numOfVisibleItems += 1;
|
||||
check();
|
||||
}
|
||||
// Update the button accordingly
|
||||
jQuery($btn).find(".greedy-count").html( numOfItems - numOfVisibleItems);
|
||||
if (numOfVisibleItems === numOfItems) {
|
||||
$btn.addClass('d-none');
|
||||
} else $btn.removeClass('d-none');
|
||||
}
|
||||
|
||||
// Window listeners
|
||||
jQuery(window).resize(function() {
|
||||
check();
|
||||
});
|
||||
|
||||
// do initial check
|
||||
check();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate Select2 items.
|
||||
*/
|
||||
function aui_init_select2(){
|
||||
jQuery("select.aui-select2").select2();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to convert a time value to a "ago" time text.
|
||||
*
|
||||
* @param selector string The .class selector
|
||||
*/
|
||||
function aui_time_ago(selector) {
|
||||
|
||||
var templates = {
|
||||
prefix: "",
|
||||
suffix: " ago",
|
||||
seconds: "less than a minute",
|
||||
minute: "about a minute",
|
||||
minutes: "%d minutes",
|
||||
hour: "about an hour",
|
||||
hours: "about %d hours",
|
||||
day: "a day",
|
||||
days: "%d days",
|
||||
month: "about a month",
|
||||
months: "%d months",
|
||||
year: "about a year",
|
||||
years: "%d years"
|
||||
};
|
||||
var template = function (t, n) {
|
||||
return templates[t] && templates[t].replace(/%d/i, Math.abs(Math.round(n)));
|
||||
};
|
||||
|
||||
var timer = function (time) {
|
||||
if (!time)
|
||||
return;
|
||||
time = time.replace(/\.\d+/, ""); // remove milliseconds
|
||||
time = time.replace(/-/, "/").replace(/-/, "/");
|
||||
time = time.replace(/T/, " ").replace(/Z/, " UTC");
|
||||
time = time.replace(/([\+\-]\d\d)\:?(\d\d)/, " $1$2"); // -04:00 -> -0400
|
||||
time = new Date(time * 1000 || time);
|
||||
|
||||
var now = new Date();
|
||||
var seconds = ((now.getTime() - time) * .001) >> 0;
|
||||
var minutes = seconds / 60;
|
||||
var hours = minutes / 60;
|
||||
var days = hours / 24;
|
||||
var years = days / 365;
|
||||
|
||||
return templates.prefix + (
|
||||
seconds < 45 && template('seconds', seconds) ||
|
||||
seconds < 90 && template('minute', 1) ||
|
||||
minutes < 45 && template('minutes', minutes) ||
|
||||
minutes < 90 && template('hour', 1) ||
|
||||
hours < 24 && template('hours', hours) ||
|
||||
hours < 42 && template('day', 1) ||
|
||||
days < 30 && template('days', days) ||
|
||||
days < 45 && template('month', 1) ||
|
||||
days < 365 && template('months', days / 30) ||
|
||||
years < 1.5 && template('year', 1) ||
|
||||
template('years', years)
|
||||
) + templates.suffix;
|
||||
};
|
||||
|
||||
var elements = document.getElementsByClassName(selector);
|
||||
if (selector && elements && elements.length) {
|
||||
for (var i in elements) {
|
||||
var $el = elements[i];
|
||||
if (typeof $el === 'object') {
|
||||
$el.innerHTML = '<i class="far fa-clock"></i> ' + timer($el.getAttribute('title') || $el.getAttribute('datetime'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// update time every minute
|
||||
setTimeout(function() {
|
||||
aui_time_ago(selector);
|
||||
}, 60000);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate tooltips on the page.
|
||||
*/
|
||||
function aui_init_tooltips(){
|
||||
jQuery('[data-toggle="tooltip"]').tooltip();
|
||||
jQuery('[data-toggle="popover"]').popover();
|
||||
jQuery('[data-toggle="popover-html"]').popover({
|
||||
html: true
|
||||
});
|
||||
|
||||
// fix popover container compatibility
|
||||
jQuery('[data-toggle="popover"],[data-toggle="popover-html"]').on('inserted.bs.popover', function () {
|
||||
jQuery('body > .popover').wrapAll("<div class='bsui' />");
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate flatpickrs on the page.
|
||||
*/
|
||||
$aui_doing_init_flatpickr = false;
|
||||
function aui_init_flatpickr(){
|
||||
if ( jQuery.isFunction(jQuery.fn.flatpickr) && !$aui_doing_init_flatpickr) {
|
||||
$aui_doing_init_flatpickr = true;
|
||||
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
|
||||
}
|
||||
$aui_doing_init_flatpickr = false;
|
||||
}
|
||||
|
||||
function aui_modal($title,$body,$footer,$dismissible,$class,$dialog_class) {
|
||||
if(!$class){$class = '';}
|
||||
if(!$dialog_class){$dialog_class = '';}
|
||||
if(!$body){$body = '<div class="text-center"><div class="spinner-border" role="status"></div></div>';}
|
||||
// remove it first
|
||||
jQuery('.aui-modal').modal('hide').modal('dispose').remove();
|
||||
jQuery('.modal-backdrop').remove();
|
||||
|
||||
var $modal = '';
|
||||
|
||||
$modal += '<div class="modal aui-modal fade shadow bsui '+$class+'" tabindex="-1">'+
|
||||
'<div class="modal-dialog modal-dialog-centered '+$dialog_class+'">'+
|
||||
'<div class="modal-content">';
|
||||
|
||||
if($title) {
|
||||
$modal += '<div class="modal-header">' +
|
||||
'<h5 class="modal-title">' + $title + '</h5>';
|
||||
|
||||
if ($dismissible) {
|
||||
$modal += '<button type="button" class="close" data-dismiss="modal" aria-label="Close">' +
|
||||
'<span aria-hidden="true">×</span>' +
|
||||
'</button>';
|
||||
}
|
||||
|
||||
$modal += '</div>';
|
||||
}
|
||||
$modal += '<div class="modal-body">'+
|
||||
$body+
|
||||
'</div>';
|
||||
|
||||
if($footer){
|
||||
$modal += '<div class="modal-footer">'+
|
||||
$footer +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
$modal +='</div>'+
|
||||
'</div>'+
|
||||
'</div>';
|
||||
|
||||
jQuery('body').append($modal);
|
||||
|
||||
jQuery('.aui-modal').modal('hide').modal({
|
||||
//backdrop: 'static'
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Show / hide fields depending on conditions.
|
||||
*/
|
||||
function aui_conditional_fields(form){
|
||||
jQuery(form).find(".aui-conditional-field").each(function () {
|
||||
|
||||
var $element_require = jQuery(this).data('element-require');
|
||||
|
||||
if ($element_require) {
|
||||
|
||||
$element_require = $element_require.replace("'", "'"); // replace single quotes
|
||||
$element_require = $element_require.replace(""", '"'); // replace double quotes
|
||||
|
||||
if (aui_check_form_condition($element_require,form)) {
|
||||
jQuery(this).removeClass('d-none');
|
||||
} else {
|
||||
jQuery(this).addClass('d-none');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Check form condition
|
||||
*/
|
||||
function aui_check_form_condition(condition,form) {
|
||||
if (form) {
|
||||
condition = condition.replace(/\(form\)/g, "('"+form+"')");
|
||||
}
|
||||
return new Function("return " + condition+";")();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to determine if a element is on screen.
|
||||
*/
|
||||
jQuery.fn.aui_isOnScreen = function(){
|
||||
|
||||
var win = jQuery(window);
|
||||
|
||||
var viewport = {
|
||||
top : win.scrollTop(),
|
||||
left : win.scrollLeft()
|
||||
};
|
||||
viewport.right = viewport.left + win.width();
|
||||
viewport.bottom = viewport.top + win.height();
|
||||
|
||||
var bounds = this.offset();
|
||||
bounds.right = bounds.left + this.outerWidth();
|
||||
bounds.bottom = bounds.top + this.outerHeight();
|
||||
|
||||
return (!(viewport.right < bounds.left || viewport.left > bounds.right || viewport.bottom < bounds.top || viewport.top > bounds.bottom));
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Maybe show multiple carousel items if set to do so.
|
||||
*/
|
||||
function aui_carousel_maybe_show_multiple_items($carousel){
|
||||
var $items = {};
|
||||
var $item_count = 0;
|
||||
|
||||
// maybe backup
|
||||
if(!jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).append('<div class="carousel-inner-original d-none">'+jQuery($carousel).find('.carousel-inner').html()+'</div>');
|
||||
}
|
||||
|
||||
// Get the original items html
|
||||
jQuery($carousel).find('.carousel-inner-original .carousel-item').each(function () {
|
||||
$items[$item_count] = jQuery(this).html();
|
||||
$item_count++;
|
||||
});
|
||||
|
||||
// bail if no items
|
||||
if(!$item_count){return;}
|
||||
|
||||
if(jQuery(window).width() <= 576){
|
||||
// maybe restore original
|
||||
if(jQuery($carousel).find('.carousel-inner').hasClass('aui-multiple-items') && jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).find('.carousel-inner').removeClass('aui-multiple-items').html(jQuery($carousel).find('.carousel-inner-original').html());
|
||||
jQuery($carousel).find(".carousel-indicators li").removeClass("d-none");
|
||||
}
|
||||
|
||||
}else{
|
||||
// new items
|
||||
var $md_count = jQuery($carousel).data('limit_show');
|
||||
var $new_items = '';
|
||||
var $new_items_count = 0;
|
||||
var $new_item_count = 0;
|
||||
var $closed = true;
|
||||
Object.keys($items).forEach(function(key,index) {
|
||||
|
||||
// close
|
||||
if(index != 0 && Number.isInteger(index/$md_count) ){
|
||||
$new_items += '</div></div>';
|
||||
$closed = true;
|
||||
}
|
||||
|
||||
// open
|
||||
if(index == 0 || Number.isInteger(index/$md_count) ){
|
||||
$active = index == 0 ? 'active' : '';
|
||||
$new_items += '<div class="carousel-item '+$active+'"><div class="row m-0">';
|
||||
$closed = false;
|
||||
$new_items_count++;
|
||||
$new_item_count = 0;
|
||||
}
|
||||
|
||||
// content
|
||||
$new_items += '<div class="col pr-1 pl-0">'+$items[index]+'</div>';
|
||||
$new_item_count++;
|
||||
|
||||
|
||||
});
|
||||
|
||||
// close if not closed in the loop
|
||||
if(!$closed){
|
||||
// check for spares
|
||||
if($md_count-$new_item_count > 0){
|
||||
$placeholder_count = $md_count-$new_item_count;
|
||||
while($placeholder_count > 0){
|
||||
$new_items += '<div class="col pr-1 pl-0"></div>';
|
||||
$placeholder_count--;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$new_items += '</div></div>';
|
||||
}
|
||||
|
||||
// insert the new items
|
||||
jQuery($carousel).find('.carousel-inner').addClass('aui-multiple-items').html($new_items);
|
||||
|
||||
// fix any lazyload images in the active slider
|
||||
jQuery($carousel).find('.carousel-item.active img').each(function () {
|
||||
// fix the srcset
|
||||
if(real_srcset = jQuery(this).attr("data-srcset")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("srcset",real_srcset);
|
||||
}
|
||||
// fix the src
|
||||
if(real_src = jQuery(this).attr("data-src")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("src",real_src);
|
||||
}
|
||||
});
|
||||
|
||||
// maybe fix carousel indicators
|
||||
$hide_count = $new_items_count-1;
|
||||
jQuery($carousel).find(".carousel-indicators li:gt("+$hide_count+")").addClass("d-none");
|
||||
}
|
||||
|
||||
// trigger a global action to say we have
|
||||
jQuery( window ).trigger( "aui_carousel_multiple" );
|
||||
}
|
||||
|
||||
/**
|
||||
* Init Multiple item carousels.
|
||||
*/
|
||||
function aui_init_carousel_multiple_items(){
|
||||
jQuery(window).resize(function(){
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
});
|
||||
|
||||
// run now
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Allow navs to use multiple sub menus.
|
||||
*/
|
||||
function init_nav_sub_menus(){
|
||||
|
||||
jQuery('.navbar-multi-sub-menus').each(function(i, obj) {
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("has-sub-sub-menus")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('has-sub-sub-menus');
|
||||
|
||||
jQuery(this).find( '.dropdown-menu a.dropdown-toggle' ).on( 'click', function ( e ) {
|
||||
var $el = jQuery( this );
|
||||
$el.toggleClass('active-dropdown');
|
||||
var $parent = jQuery( this ).offsetParent( ".dropdown-menu" );
|
||||
if ( !jQuery( this ).next().hasClass( 'show' ) ) {
|
||||
jQuery( this ).parents( '.dropdown-menu' ).first().find( '.show' ).removeClass( "show" );
|
||||
}
|
||||
var $subMenu = jQuery( this ).next( ".dropdown-menu" );
|
||||
$subMenu.toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parent( "li" ).toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parents( 'li.nav-item.dropdown.show' ).on( 'hidden.bs.dropdown', function ( e ) {
|
||||
jQuery( '.dropdown-menu .show' ).removeClass( "show" );
|
||||
$el.removeClass('active-dropdown');
|
||||
} );
|
||||
|
||||
if ( !$parent.parent().hasClass( 'navbar-nav' ) ) {
|
||||
$el.next().addClass('position-relative border-top border-bottom');
|
||||
}
|
||||
|
||||
return false;
|
||||
} );
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Initiate all AUI JS.
|
||||
*/
|
||||
function aui_init(){
|
||||
// nav menu submenus
|
||||
init_nav_sub_menus();
|
||||
|
||||
// init tooltips
|
||||
aui_init_tooltips();
|
||||
|
||||
// init select2
|
||||
aui_init_select2();
|
||||
|
||||
// init flatpickr
|
||||
aui_init_flatpickr();
|
||||
|
||||
// init Greedy nav
|
||||
aui_init_greedy_nav();
|
||||
|
||||
// Set times to time ago
|
||||
aui_time_ago('timeago');
|
||||
|
||||
// init multiple item carousels
|
||||
aui_init_carousel_multiple_items();
|
||||
}
|
||||
|
||||
// run on window loaded
|
||||
jQuery(window).on("load",function() {
|
||||
aui_init();
|
||||
});
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<link rel="https://api.w.org/" href="../../wp-json/index.html"><link rel="alternate" type="application/json" href="../../wp-json/wp/v2/users/1/index.html"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="../../../xmlrpc.php">
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="../../../wp-includes/wlwmanifest.xml">
|
||||
<meta name="generator" content="WordPress 5.7.2">
|
||||
<style type="text/css">img#wpstats{display:none}</style>
|
||||
<style type="text/css">
|
||||
/* Colors */
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="archive author author-calvin author-1 no-sidebar footer-0 has-avatars">
|
||||
<div id="page" class="hfeed site">
|
||||
<a class="skip-link screen-reader-text" href="#content/index.html">Springe zum Inhalt</a>
|
||||
|
||||
<header id="masthead" class="site-header">
|
||||
|
||||
<div class="site-branding">
|
||||
<div class="site-title"><a href="../../../index.html" rel="home">Ak21</a></div>
|
||||
<div class="site-description">Jahrbuch der JHS</div>
|
||||
</div><!-- .site-branding -->
|
||||
|
||||
<nav id="site-navigation" class="main-navigation">
|
||||
<button class="menu-toggle"><span class="menu-text">Menü</span></button>
|
||||
<div class="menu-normal-container"><ul id="menu-normal" class="menu"><li id="menu-item-207" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-207"><a href="../../steckbriefe/index.html">Steckbriefe</a></li>
|
||||
<li id="menu-item-208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-208"><a href="../../umfrage-ergebnisse/index.html">Umfrage Ergebnisse</a></li>
|
||||
<li id="menu-item-213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-213"><a href="../../gaestebuch/index.html">Gästebuch</a></li>
|
||||
</ul></div> <form role="search" method="get" class="search-form" action="../../../index.html">
|
||||
<label>
|
||||
<span class="screen-reader-text">Suche nach:</span>
|
||||
<input type="search" class="search-field" placeholder="Suche …" value="" name="s">
|
||||
</label>
|
||||
<input type="submit" class="search-submit" value="Suche">
|
||||
</form> </nav><!-- #site-navigation -->
|
||||
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="content" class="site-content">
|
||||
|
||||
<section id="primary" class="content-area">
|
||||
<main id="main" class="site-main">
|
||||
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title">Autor: <span>admin</span></h1> </header><!-- .page-header -->
|
||||
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-204" class="post-204 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/angelina-gossrau/index.html" rel="bookmark">Angelina Goßrau</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/angelina-gossrau/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:14:58+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/angelina-gossrau/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Das man immer zusammen gelacht hat Coolster Spruch: „Das war doch einfach “ Hobbys: Schwimmen, Fahrrad fahren Sp...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-202" class="post-202 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/bernd-marwitz/index.html" rel="bookmark">Bernd Marwitz</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/bernd-marwitz/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:14:37+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/bernd-marwitz/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Das Klingeln! …. wird aber nicht verraten ob zu Beginn oder Ende der Stunde. Coolster Spruch: „Gibt zu viele. H...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-200" class="post-200 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/calvin-erfmann/index.html" rel="bookmark">Calvin Erfmann</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/calvin-erfmann/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:14:21+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/calvin-erfmann/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: ARBEITSLAGER! Coolster Spruch: „Super Cool “ Hobbys: Programmieren und Zocken (was auch sonst) Spitzname: Kevin Berufswunsch: S...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-198" class="post-198 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/celine-klotz/index.html" rel="bookmark">Celine Klotz</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/celine-klotz/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:07:13+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/celine-klotz/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Mottowoche Coolster Spruch: „Ich mag sie eh nicht “ Hobbys: Mit Freunden treffen Spitzname: Husch Husch Ber...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-196" class="post-196 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/darian-alfs/index.html" rel="bookmark">Darian Alfs</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/darian-alfs/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:06:55+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/darian-alfs/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Mottotag Retro Coolster Spruch: „Super cool“ Hobbys: Jugendfeuerwehr Spitzname: Dari Berufswunsch: Ele...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-194" class="post-194 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/edik-kelim/index.html" rel="bookmark">Edik Kelim</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/edik-kelim/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:06:37+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/edik-kelim/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Im Boc die Geschichten vob Abudi Coolster Spruch: „Das ist Cool“ Hobbys: Zocken Spitzname: Edik Berufswunsc...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-192" class="post-192 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/georg-gorodezki/index.html" rel="bookmark">Georg Gorodezki</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/georg-gorodezki/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:06:15+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/georg-gorodezki/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Eis essen Coolster Spruch: „Mein zeh tut weh wenn ich Tee holen gehen“ Hobbys: Angeln Spitzname: Kasache Be...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-190" class="post-190 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/greta/index.html" rel="bookmark">Greta</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/greta/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:05:48+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/greta/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Freitag wen ich auch nicht mehr sehen muss Coolster Spruch: „?“ Hobbys: Wen juckts ?? Spitzname: Gibt kein ...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-188" class="post-188 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/henry-evers/index.html" rel="bookmark">Henry Evers</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/henry-evers/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:05:30+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/henry-evers/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Als die ZP Noten verkündet wurden Coolster Spruch: „Saufing “ Hobbys: Fotografieren und gaming Spitzname: H...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-186" class="post-186 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="../../category/uncategorized/index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/jacqueline-bonn/index.html" rel="bookmark">Jacqueline Bonn</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/jacqueline-bonn/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:04:54+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/jacqueline-bonn/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Frau Bonn… ich hab hier einen riesen Beutel Kekse für Sie! Können wir das Nachsitzen am Freitag ausfallen lassen? Co...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<nav class="navigation pagination" role="navigation" aria-label="Beiträge">
|
||||
<h2 class="screen-reader-text">Beitrags-Navigation</h2>
|
||||
<div class="nav-links"><span aria-current="page" class="page-numbers current">1</span>
|
||||
<a class="page-numbers" href="page/2/index.html">2</a>
|
||||
<span class="page-numbers dots">…</span>
|
||||
<a class="page-numbers" href="page/4/index.html">4</a>
|
||||
<a class="next page-numbers" href="page/2/index.html">Nächster »</a></div>
|
||||
</nav>
|
||||
|
||||
</main><!-- #main -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
|
||||
<footer id="colophon" class="site-footer">
|
||||
|
||||
|
||||
<div class="site-bottom">
|
||||
|
||||
<div class="site-info">
|
||||
<div class="site-copyright">
|
||||
© 2021 <a href="../../../index.html" rel="home">Ak21</a>
|
||||
</div><!-- .site-copyright -->
|
||||
<div class="site-credit">
|
||||
Powered by <a href="https://de.wordpress.org/">WordPress</a> <span class="site-credit-sep"> | </span>
|
||||
Theme: <a href="http://themegraphy.com/wordpress-themes/graphy/">Graphy</a> von Themegraphy </div><!-- .site-credit -->
|
||||
</div><!-- .site-info -->
|
||||
|
||||
</div><!-- .site-bottom -->
|
||||
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<style>html{font-size:16px;}</style><script type="text/javascript" id="ce4wp_form_submit-js-extra">
|
||||
/* <![CDATA[ */
|
||||
var ce4wp_form_submit_data = {"siteUrl":"https:\/\/ak-21.de","url":"https:\/\/ak-21.de\/wp-admin\/admin-ajax.php","nonce":"9cb75718f3","listNonce":"3f4360f3ac"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/submit.js" id="ce4wp_form_submit-js"></script>
|
||||
<script type="text/javascript" src="../../../p/jetpack/9.8.1/_inc/build/photon/photon.min.js" id="jetpack-photon-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/jquery.fitvids.js" id="fitvids-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/skip-link-focus-fix.js" id="graphy-skip-link-focus-fix-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/navigation.js" id="graphy-navigation-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/doubletaptogo.min.js" id="double-tap-to-go-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/functions.js" id="graphy-functions-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/wordpress-countdown-widget/js/jquery.countdown.min.js" id="countdown-js"></script>
|
||||
<script type="text/javascript" src="../../../c/5.7.2/wp-includes/js/wp-embed.min.js" id="wp-embed-js"></script>
|
||||
<script src="../../../e-202125.js" defer=""></script>
|
||||
<script>
|
||||
_stq = window._stq || [];
|
||||
_stq.push([ 'view', {v:'ext',j:'1:9.8.1',blog:'194733867',post:'0',tz:'0',srv:'ak-21.de'} ]);
|
||||
_stq.push([ 'clickTrackerInit', '194733867', '0' ]);
|
||||
</script>
|
||||
|
||||
<script>(function($) {
|
||||
$.countdown.regional['custom'] = {
|
||||
labels: [
|
||||
'Jahre',
|
||||
'Monate',
|
||||
'Wochen',
|
||||
'Tage',
|
||||
'Stunden',
|
||||
'Minuten',
|
||||
'Sekunden'
|
||||
],
|
||||
labels1: [
|
||||
'Jahr',
|
||||
'Monat',
|
||||
'Woche',
|
||||
'Tag',
|
||||
'Stunde',
|
||||
'Minute',
|
||||
'Sekunde'
|
||||
],
|
||||
compactLabels: ['y', 'a', 'h', 'g'],
|
||||
whichLabels: null,
|
||||
timeSeparator: ':',
|
||||
isRTL: false
|
||||
};
|
||||
$.countdown.setDefaults($.countdown.regional['custom']);
|
||||
})(jQuery);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,951 @@
|
||||
<!DOCTYPE html><html lang="de-DE"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="pingback" href="../../../xmlrpc.php">
|
||||
<title>Uncategorized – Ak21</title>
|
||||
<meta name="robots" content="max-image-preview:large">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="dns-prefetch" href="../../../index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Feed" href="../../feed/index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Kommentar-Feed" href="../../comments/feed/index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Uncategorized Kategorie-Feed" href="feed/index.html">
|
||||
<script type="text/javascript">
|
||||
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/ak-21.de\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"}};
|
||||
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
|
||||
</script>
|
||||
<style type="text/css">
|
||||
img.wp-smiley,
|
||||
img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
</style>
|
||||
<style type="text/css">
|
||||
.hasCountdown{text-shadow:transparent 0 1px 1px;overflow:hidden;padding:5px}
|
||||
.countdown_rtl{direction:rtl}
|
||||
.countdown_holding span{background-color:#ccc}
|
||||
.countdown_row{clear:both;width:100%;text-align:center}
|
||||
.countdown_show1 .countdown_section{width:98%}
|
||||
.countdown_show2 .countdown_section{width:48%}
|
||||
.countdown_show3 .countdown_section{width:32.5%}
|
||||
.countdown_show4 .countdown_section{width:24.5%}
|
||||
.countdown_show5 .countdown_section{width:19.5%}
|
||||
.countdown_show6 .countdown_section{width:16.25%}
|
||||
.countdown_show7 .countdown_section{width:14%}
|
||||
.countdown_section{display:block;float:left;font-size:75%;text-align:center;margin:3px 0}
|
||||
.countdown_amount{font-size:200%}
|
||||
.countdown_descr{display:block;width:100%}
|
||||
a.countdown_infolink{display:block;border-radius:10px;width:14px;height:13px;float:right;font-size:9px;line-height:13px;font-weight:700;text-align:center;position:relative;top:-15px;border:1px solid}
|
||||
#countdown-preview{padding:10px}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ayecode-ui-css" href="../../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css" type="text/css" media="all">
|
||||
<style id="ayecode-ui-inline-css" type="text/css">
|
||||
|
||||
body.modal-open #wpadminbar{z-index:999}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" id="wp-block-library-css" href="../../../c/5.7.2/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
|
||||
<style id="wp-block-library-inline-css" type="text/css">
|
||||
.has-text-align-justify{text-align:justify;}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ce4wp-subscribe-style-css" href="../../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/subscribe.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-font-css" href="../../../css/index.html" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="genericons-css" href="../../../p/jetpack/9.8.1/_inc/genericons/genericons/genericons.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="normalize-css" href="../../../wp-content/themes/graphy/css/normalize.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-style-css" href="../../../wp-content/themes/graphy/style.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="../../../releases/v5.15.3/css/all.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jetpack_css-css" href="../../../p/jetpack/9.8.1/css/jetpack.css" type="text/css" media="all">
|
||||
<script type="text/javascript" src="../../../c/5.7.2/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
|
||||
<script type="text/javascript" src="../../../c/5.7.2/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js" id="select2-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/bootstrap.bundle.min.js" id="bootstrap-js-bundle-js"></script>
|
||||
<script type="text/javascript" id="bootstrap-js-bundle-js-after">
|
||||
|
||||
|
||||
/**
|
||||
* An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
|
||||
*
|
||||
* Simply add the class `greedy` to any <nav> menu and it will do the rest.
|
||||
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||||
* @ver 0.0.1
|
||||
*/
|
||||
function aui_init_greedy_nav(){
|
||||
jQuery('nav.greedy').each(function(i, obj) {
|
||||
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("being-greedy")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('navbar-expand');
|
||||
|
||||
// vars
|
||||
var $vlinks = '';
|
||||
var $dDownClass = '';
|
||||
if(jQuery(this).find('.navbar-nav').length){
|
||||
if(jQuery(this).find('.navbar-nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.navbar-nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
}else if(jQuery(this).find('.nav').length){
|
||||
if(jQuery(this).find('.nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
$dDownClass = ' mt-2 ';
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
|
||||
jQuery($vlinks).append('<li class="nav-item list-unstyled ml-auto greedy-btn d-none dropdown ">' +
|
||||
'<a href="javascript:void(0)" data-toggle="dropdown" class="nav-link"><i class="fas fa-ellipsis-h"></i> <span class="greedy-count badge badge-dark badge-pill"></span></a>' +
|
||||
'<ul class="greedy-links dropdown-menu dropdown-menu-right '+$dDownClass+'"></ul>' +
|
||||
'</li>');
|
||||
|
||||
var $hlinks = jQuery(this).find('.greedy-links');
|
||||
var $btn = jQuery(this).find('.greedy-btn');
|
||||
|
||||
var numOfItems = 0;
|
||||
var totalSpace = 0;
|
||||
var closingTime = 1000;
|
||||
var breakWidths = [];
|
||||
|
||||
// Get initial state
|
||||
$vlinks.children().outerWidth(function(i, w) {
|
||||
totalSpace += w;
|
||||
numOfItems += 1;
|
||||
breakWidths.push(totalSpace);
|
||||
});
|
||||
|
||||
var availableSpace, numOfVisibleItems, requiredSpace, buttonSpace ,timer;
|
||||
|
||||
/*
|
||||
The check function.
|
||||
*/
|
||||
function check() {
|
||||
|
||||
// Get instant state
|
||||
buttonSpace = $btn.width();
|
||||
availableSpace = $vlinks.width() - 10;
|
||||
numOfVisibleItems = $vlinks.children().length;
|
||||
requiredSpace = breakWidths[numOfVisibleItems - 1];
|
||||
|
||||
// There is not enough space
|
||||
if (numOfVisibleItems > 1 && requiredSpace > availableSpace) {
|
||||
$vlinks.children().last().prev().prependTo($hlinks);
|
||||
numOfVisibleItems -= 1;
|
||||
check();
|
||||
// There is more than enough space
|
||||
} else if (availableSpace > breakWidths[numOfVisibleItems]) {
|
||||
$hlinks.children().first().insertBefore($btn);
|
||||
numOfVisibleItems += 1;
|
||||
check();
|
||||
}
|
||||
// Update the button accordingly
|
||||
jQuery($btn).find(".greedy-count").html( numOfItems - numOfVisibleItems);
|
||||
if (numOfVisibleItems === numOfItems) {
|
||||
$btn.addClass('d-none');
|
||||
} else $btn.removeClass('d-none');
|
||||
}
|
||||
|
||||
// Window listeners
|
||||
jQuery(window).resize(function() {
|
||||
check();
|
||||
});
|
||||
|
||||
// do initial check
|
||||
check();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate Select2 items.
|
||||
*/
|
||||
function aui_init_select2(){
|
||||
jQuery("select.aui-select2").select2();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to convert a time value to a "ago" time text.
|
||||
*
|
||||
* @param selector string The .class selector
|
||||
*/
|
||||
function aui_time_ago(selector) {
|
||||
|
||||
var templates = {
|
||||
prefix: "",
|
||||
suffix: " ago",
|
||||
seconds: "less than a minute",
|
||||
minute: "about a minute",
|
||||
minutes: "%d minutes",
|
||||
hour: "about an hour",
|
||||
hours: "about %d hours",
|
||||
day: "a day",
|
||||
days: "%d days",
|
||||
month: "about a month",
|
||||
months: "%d months",
|
||||
year: "about a year",
|
||||
years: "%d years"
|
||||
};
|
||||
var template = function (t, n) {
|
||||
return templates[t] && templates[t].replace(/%d/i, Math.abs(Math.round(n)));
|
||||
};
|
||||
|
||||
var timer = function (time) {
|
||||
if (!time)
|
||||
return;
|
||||
time = time.replace(/\.\d+/, ""); // remove milliseconds
|
||||
time = time.replace(/-/, "/").replace(/-/, "/");
|
||||
time = time.replace(/T/, " ").replace(/Z/, " UTC");
|
||||
time = time.replace(/([\+\-]\d\d)\:?(\d\d)/, " $1$2"); // -04:00 -> -0400
|
||||
time = new Date(time * 1000 || time);
|
||||
|
||||
var now = new Date();
|
||||
var seconds = ((now.getTime() - time) * .001) >> 0;
|
||||
var minutes = seconds / 60;
|
||||
var hours = minutes / 60;
|
||||
var days = hours / 24;
|
||||
var years = days / 365;
|
||||
|
||||
return templates.prefix + (
|
||||
seconds < 45 && template('seconds', seconds) ||
|
||||
seconds < 90 && template('minute', 1) ||
|
||||
minutes < 45 && template('minutes', minutes) ||
|
||||
minutes < 90 && template('hour', 1) ||
|
||||
hours < 24 && template('hours', hours) ||
|
||||
hours < 42 && template('day', 1) ||
|
||||
days < 30 && template('days', days) ||
|
||||
days < 45 && template('month', 1) ||
|
||||
days < 365 && template('months', days / 30) ||
|
||||
years < 1.5 && template('year', 1) ||
|
||||
template('years', years)
|
||||
) + templates.suffix;
|
||||
};
|
||||
|
||||
var elements = document.getElementsByClassName(selector);
|
||||
if (selector && elements && elements.length) {
|
||||
for (var i in elements) {
|
||||
var $el = elements[i];
|
||||
if (typeof $el === 'object') {
|
||||
$el.innerHTML = '<i class="far fa-clock"></i> ' + timer($el.getAttribute('title') || $el.getAttribute('datetime'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// update time every minute
|
||||
setTimeout(function() {
|
||||
aui_time_ago(selector);
|
||||
}, 60000);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate tooltips on the page.
|
||||
*/
|
||||
function aui_init_tooltips(){
|
||||
jQuery('[data-toggle="tooltip"]').tooltip();
|
||||
jQuery('[data-toggle="popover"]').popover();
|
||||
jQuery('[data-toggle="popover-html"]').popover({
|
||||
html: true
|
||||
});
|
||||
|
||||
// fix popover container compatibility
|
||||
jQuery('[data-toggle="popover"],[data-toggle="popover-html"]').on('inserted.bs.popover', function () {
|
||||
jQuery('body > .popover').wrapAll("<div class='bsui' />");
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate flatpickrs on the page.
|
||||
*/
|
||||
$aui_doing_init_flatpickr = false;
|
||||
function aui_init_flatpickr(){
|
||||
if ( jQuery.isFunction(jQuery.fn.flatpickr) && !$aui_doing_init_flatpickr) {
|
||||
$aui_doing_init_flatpickr = true;
|
||||
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
|
||||
}
|
||||
$aui_doing_init_flatpickr = false;
|
||||
}
|
||||
|
||||
function aui_modal($title,$body,$footer,$dismissible,$class,$dialog_class) {
|
||||
if(!$class){$class = '';}
|
||||
if(!$dialog_class){$dialog_class = '';}
|
||||
if(!$body){$body = '<div class="text-center"><div class="spinner-border" role="status"></div></div>';}
|
||||
// remove it first
|
||||
jQuery('.aui-modal').modal('hide').modal('dispose').remove();
|
||||
jQuery('.modal-backdrop').remove();
|
||||
|
||||
var $modal = '';
|
||||
|
||||
$modal += '<div class="modal aui-modal fade shadow bsui '+$class+'" tabindex="-1">'+
|
||||
'<div class="modal-dialog modal-dialog-centered '+$dialog_class+'">'+
|
||||
'<div class="modal-content">';
|
||||
|
||||
if($title) {
|
||||
$modal += '<div class="modal-header">' +
|
||||
'<h5 class="modal-title">' + $title + '</h5>';
|
||||
|
||||
if ($dismissible) {
|
||||
$modal += '<button type="button" class="close" data-dismiss="modal" aria-label="Close">' +
|
||||
'<span aria-hidden="true">×</span>' +
|
||||
'</button>';
|
||||
}
|
||||
|
||||
$modal += '</div>';
|
||||
}
|
||||
$modal += '<div class="modal-body">'+
|
||||
$body+
|
||||
'</div>';
|
||||
|
||||
if($footer){
|
||||
$modal += '<div class="modal-footer">'+
|
||||
$footer +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
$modal +='</div>'+
|
||||
'</div>'+
|
||||
'</div>';
|
||||
|
||||
jQuery('body').append($modal);
|
||||
|
||||
jQuery('.aui-modal').modal('hide').modal({
|
||||
//backdrop: 'static'
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Show / hide fields depending on conditions.
|
||||
*/
|
||||
function aui_conditional_fields(form){
|
||||
jQuery(form).find(".aui-conditional-field").each(function () {
|
||||
|
||||
var $element_require = jQuery(this).data('element-require');
|
||||
|
||||
if ($element_require) {
|
||||
|
||||
$element_require = $element_require.replace("'", "'"); // replace single quotes
|
||||
$element_require = $element_require.replace(""", '"'); // replace double quotes
|
||||
|
||||
if (aui_check_form_condition($element_require,form)) {
|
||||
jQuery(this).removeClass('d-none');
|
||||
} else {
|
||||
jQuery(this).addClass('d-none');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Check form condition
|
||||
*/
|
||||
function aui_check_form_condition(condition,form) {
|
||||
if (form) {
|
||||
condition = condition.replace(/\(form\)/g, "('"+form+"')");
|
||||
}
|
||||
return new Function("return " + condition+";")();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to determine if a element is on screen.
|
||||
*/
|
||||
jQuery.fn.aui_isOnScreen = function(){
|
||||
|
||||
var win = jQuery(window);
|
||||
|
||||
var viewport = {
|
||||
top : win.scrollTop(),
|
||||
left : win.scrollLeft()
|
||||
};
|
||||
viewport.right = viewport.left + win.width();
|
||||
viewport.bottom = viewport.top + win.height();
|
||||
|
||||
var bounds = this.offset();
|
||||
bounds.right = bounds.left + this.outerWidth();
|
||||
bounds.bottom = bounds.top + this.outerHeight();
|
||||
|
||||
return (!(viewport.right < bounds.left || viewport.left > bounds.right || viewport.bottom < bounds.top || viewport.top > bounds.bottom));
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Maybe show multiple carousel items if set to do so.
|
||||
*/
|
||||
function aui_carousel_maybe_show_multiple_items($carousel){
|
||||
var $items = {};
|
||||
var $item_count = 0;
|
||||
|
||||
// maybe backup
|
||||
if(!jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).append('<div class="carousel-inner-original d-none">'+jQuery($carousel).find('.carousel-inner').html()+'</div>');
|
||||
}
|
||||
|
||||
// Get the original items html
|
||||
jQuery($carousel).find('.carousel-inner-original .carousel-item').each(function () {
|
||||
$items[$item_count] = jQuery(this).html();
|
||||
$item_count++;
|
||||
});
|
||||
|
||||
// bail if no items
|
||||
if(!$item_count){return;}
|
||||
|
||||
if(jQuery(window).width() <= 576){
|
||||
// maybe restore original
|
||||
if(jQuery($carousel).find('.carousel-inner').hasClass('aui-multiple-items') && jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).find('.carousel-inner').removeClass('aui-multiple-items').html(jQuery($carousel).find('.carousel-inner-original').html());
|
||||
jQuery($carousel).find(".carousel-indicators li").removeClass("d-none");
|
||||
}
|
||||
|
||||
}else{
|
||||
// new items
|
||||
var $md_count = jQuery($carousel).data('limit_show');
|
||||
var $new_items = '';
|
||||
var $new_items_count = 0;
|
||||
var $new_item_count = 0;
|
||||
var $closed = true;
|
||||
Object.keys($items).forEach(function(key,index) {
|
||||
|
||||
// close
|
||||
if(index != 0 && Number.isInteger(index/$md_count) ){
|
||||
$new_items += '</div></div>';
|
||||
$closed = true;
|
||||
}
|
||||
|
||||
// open
|
||||
if(index == 0 || Number.isInteger(index/$md_count) ){
|
||||
$active = index == 0 ? 'active' : '';
|
||||
$new_items += '<div class="carousel-item '+$active+'"><div class="row m-0">';
|
||||
$closed = false;
|
||||
$new_items_count++;
|
||||
$new_item_count = 0;
|
||||
}
|
||||
|
||||
// content
|
||||
$new_items += '<div class="col pr-1 pl-0">'+$items[index]+'</div>';
|
||||
$new_item_count++;
|
||||
|
||||
|
||||
});
|
||||
|
||||
// close if not closed in the loop
|
||||
if(!$closed){
|
||||
// check for spares
|
||||
if($md_count-$new_item_count > 0){
|
||||
$placeholder_count = $md_count-$new_item_count;
|
||||
while($placeholder_count > 0){
|
||||
$new_items += '<div class="col pr-1 pl-0"></div>';
|
||||
$placeholder_count--;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$new_items += '</div></div>';
|
||||
}
|
||||
|
||||
// insert the new items
|
||||
jQuery($carousel).find('.carousel-inner').addClass('aui-multiple-items').html($new_items);
|
||||
|
||||
// fix any lazyload images in the active slider
|
||||
jQuery($carousel).find('.carousel-item.active img').each(function () {
|
||||
// fix the srcset
|
||||
if(real_srcset = jQuery(this).attr("data-srcset")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("srcset",real_srcset);
|
||||
}
|
||||
// fix the src
|
||||
if(real_src = jQuery(this).attr("data-src")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("src",real_src);
|
||||
}
|
||||
});
|
||||
|
||||
// maybe fix carousel indicators
|
||||
$hide_count = $new_items_count-1;
|
||||
jQuery($carousel).find(".carousel-indicators li:gt("+$hide_count+")").addClass("d-none");
|
||||
}
|
||||
|
||||
// trigger a global action to say we have
|
||||
jQuery( window ).trigger( "aui_carousel_multiple" );
|
||||
}
|
||||
|
||||
/**
|
||||
* Init Multiple item carousels.
|
||||
*/
|
||||
function aui_init_carousel_multiple_items(){
|
||||
jQuery(window).resize(function(){
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
});
|
||||
|
||||
// run now
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Allow navs to use multiple sub menus.
|
||||
*/
|
||||
function init_nav_sub_menus(){
|
||||
|
||||
jQuery('.navbar-multi-sub-menus').each(function(i, obj) {
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("has-sub-sub-menus")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('has-sub-sub-menus');
|
||||
|
||||
jQuery(this).find( '.dropdown-menu a.dropdown-toggle' ).on( 'click', function ( e ) {
|
||||
var $el = jQuery( this );
|
||||
$el.toggleClass('active-dropdown');
|
||||
var $parent = jQuery( this ).offsetParent( ".dropdown-menu" );
|
||||
if ( !jQuery( this ).next().hasClass( 'show' ) ) {
|
||||
jQuery( this ).parents( '.dropdown-menu' ).first().find( '.show' ).removeClass( "show" );
|
||||
}
|
||||
var $subMenu = jQuery( this ).next( ".dropdown-menu" );
|
||||
$subMenu.toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parent( "li" ).toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parents( 'li.nav-item.dropdown.show' ).on( 'hidden.bs.dropdown', function ( e ) {
|
||||
jQuery( '.dropdown-menu .show' ).removeClass( "show" );
|
||||
$el.removeClass('active-dropdown');
|
||||
} );
|
||||
|
||||
if ( !$parent.parent().hasClass( 'navbar-nav' ) ) {
|
||||
$el.next().addClass('position-relative border-top border-bottom');
|
||||
}
|
||||
|
||||
return false;
|
||||
} );
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Initiate all AUI JS.
|
||||
*/
|
||||
function aui_init(){
|
||||
// nav menu submenus
|
||||
init_nav_sub_menus();
|
||||
|
||||
// init tooltips
|
||||
aui_init_tooltips();
|
||||
|
||||
// init select2
|
||||
aui_init_select2();
|
||||
|
||||
// init flatpickr
|
||||
aui_init_flatpickr();
|
||||
|
||||
// init Greedy nav
|
||||
aui_init_greedy_nav();
|
||||
|
||||
// Set times to time ago
|
||||
aui_time_ago('timeago');
|
||||
|
||||
// init multiple item carousels
|
||||
aui_init_carousel_multiple_items();
|
||||
}
|
||||
|
||||
// run on window loaded
|
||||
jQuery(window).on("load",function() {
|
||||
aui_init();
|
||||
});
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<link rel="https://api.w.org/" href="../../wp-json/index.html"><link rel="alternate" type="application/json" href="../../wp-json/wp/v2/categories/1/index.html"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="../../../xmlrpc.php">
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="../../../wp-includes/wlwmanifest.xml">
|
||||
<meta name="generator" content="WordPress 5.7.2">
|
||||
<style type="text/css">img#wpstats{display:none}</style>
|
||||
<style type="text/css">
|
||||
/* Colors */
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="archive category category-uncategorized category-1 no-sidebar footer-0 has-avatars">
|
||||
<div id="page" class="hfeed site">
|
||||
<a class="skip-link screen-reader-text" href="#content/index.html">Springe zum Inhalt</a>
|
||||
|
||||
<header id="masthead" class="site-header">
|
||||
|
||||
<div class="site-branding">
|
||||
<div class="site-title"><a href="../../../index.html" rel="home">Ak21</a></div>
|
||||
<div class="site-description">Jahrbuch der JHS</div>
|
||||
</div><!-- .site-branding -->
|
||||
|
||||
<nav id="site-navigation" class="main-navigation">
|
||||
<button class="menu-toggle"><span class="menu-text">Menü</span></button>
|
||||
<div class="menu-normal-container"><ul id="menu-normal" class="menu"><li id="menu-item-207" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-207"><a href="../../steckbriefe/index.html">Steckbriefe</a></li>
|
||||
<li id="menu-item-208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-208"><a href="../../umfrage-ergebnisse/index.html">Umfrage Ergebnisse</a></li>
|
||||
<li id="menu-item-213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-213"><a href="../../gaestebuch/index.html">Gästebuch</a></li>
|
||||
</ul></div> <form role="search" method="get" class="search-form" action="../../../index.html">
|
||||
<label>
|
||||
<span class="screen-reader-text">Suche nach:</span>
|
||||
<input type="search" class="search-field" placeholder="Suche …" value="" name="s">
|
||||
</label>
|
||||
<input type="submit" class="search-submit" value="Suche">
|
||||
</form> </nav><!-- #site-navigation -->
|
||||
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="content" class="site-content">
|
||||
|
||||
<section id="primary" class="content-area">
|
||||
<main id="main" class="site-main">
|
||||
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title">Kategorie: <span>Uncategorized</span></h1> </header><!-- .page-header -->
|
||||
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-204" class="post-204 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/angelina-gossrau/index.html" rel="bookmark">Angelina Goßrau</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/angelina-gossrau/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:14:58+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/angelina-gossrau/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Das man immer zusammen gelacht hat Coolster Spruch: „Das war doch einfach “ Hobbys: Schwimmen, Fahrrad fahren Sp...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-202" class="post-202 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/bernd-marwitz/index.html" rel="bookmark">Bernd Marwitz</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/bernd-marwitz/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:14:37+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/bernd-marwitz/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Das Klingeln! …. wird aber nicht verraten ob zu Beginn oder Ende der Stunde. Coolster Spruch: „Gibt zu viele. H...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-200" class="post-200 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/calvin-erfmann/index.html" rel="bookmark">Calvin Erfmann</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/calvin-erfmann/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:14:21+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/calvin-erfmann/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: ARBEITSLAGER! Coolster Spruch: „Super Cool “ Hobbys: Programmieren und Zocken (was auch sonst) Spitzname: Kevin Berufswunsch: S...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-198" class="post-198 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/celine-klotz/index.html" rel="bookmark">Celine Klotz</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/celine-klotz/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:07:13+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/celine-klotz/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Mottowoche Coolster Spruch: „Ich mag sie eh nicht “ Hobbys: Mit Freunden treffen Spitzname: Husch Husch Ber...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-196" class="post-196 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/darian-alfs/index.html" rel="bookmark">Darian Alfs</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/darian-alfs/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:06:55+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/darian-alfs/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Mottotag Retro Coolster Spruch: „Super cool“ Hobbys: Jugendfeuerwehr Spitzname: Dari Berufswunsch: Ele...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-194" class="post-194 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/edik-kelim/index.html" rel="bookmark">Edik Kelim</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/edik-kelim/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:06:37+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/edik-kelim/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Im Boc die Geschichten vob Abudi Coolster Spruch: „Das ist Cool“ Hobbys: Zocken Spitzname: Edik Berufswunsc...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-192" class="post-192 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/georg-gorodezki/index.html" rel="bookmark">Georg Gorodezki</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/georg-gorodezki/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:06:15+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/georg-gorodezki/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Eis essen Coolster Spruch: „Mein zeh tut weh wenn ich Tee holen gehen“ Hobbys: Angeln Spitzname: Kasache Be...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-190" class="post-190 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/greta/index.html" rel="bookmark">Greta</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/greta/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:05:48+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/greta/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Freitag wen ich auch nicht mehr sehen muss Coolster Spruch: „?“ Hobbys: Wen juckts ?? Spitzname: Gibt kein ...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-188" class="post-188 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/henry-evers/index.html" rel="bookmark">Henry Evers</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/henry-evers/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:05:30+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/henry-evers/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Als die ZP Noten verkündet wurden Coolster Spruch: „Saufing “ Hobbys: Fotografieren und gaming Spitzname: H...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<div class="post-list post-grid-list">
|
||||
<article id="post-186" class="post-186 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<div class="post-list-content">
|
||||
<header class="entry-header">
|
||||
<div class="cat-links"><a rel="category tag" href="index.html" class="category category-1">Uncategorized</a></div><!-- .cat-links -->
|
||||
<h2 class="entry-title"><a href="../../2021/06/24/jacqueline-bonn/index.html" rel="bookmark">Jacqueline Bonn</a></h2>
|
||||
<div class="entry-meta">
|
||||
Veröffentlicht <span class="posted-on">am <a href="../../2021/06/24/jacqueline-bonn/index.html" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-24T21:04:54+00:00">Juni 24, 2021</time></a> </span>
|
||||
<span class="byline">von <span class="author vcard">
|
||||
<a class="url fn n" href="../../author/calvin/index.html" title="Zeige alle Beiträge von admin"><span class="author-name">admin</span></a>
|
||||
</span>
|
||||
</span>
|
||||
<span class="entry-meta-sep"> / </span>
|
||||
<span class="comments-link">
|
||||
<a href="../../2021/06/24/jacqueline-bonn/#respond/index.html">0 Kommentare</a> </span>
|
||||
</div><!-- .entry-meta -->
|
||||
</header><!-- .entry-header -->
|
||||
<div class="entry-summary">
|
||||
<p>Für mich war der Coolste Moment: Frau Bonn… ich hab hier einen riesen Beutel Kekse für Sie! Können wir das Nachsitzen am Freitag ausfallen lassen? Co...</p>
|
||||
</div><!-- .entry-summary -->
|
||||
</div><!-- .post-list-content -->
|
||||
</article><!-- #post-## -->
|
||||
</div><!-- .post-list -->
|
||||
|
||||
|
||||
<nav class="navigation pagination" role="navigation" aria-label="Beiträge">
|
||||
<h2 class="screen-reader-text">Beitrags-Navigation</h2>
|
||||
<div class="nav-links"><span aria-current="page" class="page-numbers current">1</span>
|
||||
<a class="page-numbers" href="page/2/index.html">2</a>
|
||||
<span class="page-numbers dots">…</span>
|
||||
<a class="page-numbers" href="page/4/index.html">4</a>
|
||||
<a class="next page-numbers" href="page/2/index.html">Nächster »</a></div>
|
||||
</nav>
|
||||
|
||||
</main><!-- #main -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
|
||||
<footer id="colophon" class="site-footer">
|
||||
|
||||
|
||||
<div class="site-bottom">
|
||||
|
||||
<div class="site-info">
|
||||
<div class="site-copyright">
|
||||
© 2021 <a href="../../../index.html" rel="home">Ak21</a>
|
||||
</div><!-- .site-copyright -->
|
||||
<div class="site-credit">
|
||||
Powered by <a href="https://de.wordpress.org/">WordPress</a> <span class="site-credit-sep"> | </span>
|
||||
Theme: <a href="http://themegraphy.com/wordpress-themes/graphy/">Graphy</a> von Themegraphy </div><!-- .site-credit -->
|
||||
</div><!-- .site-info -->
|
||||
|
||||
</div><!-- .site-bottom -->
|
||||
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<style>html{font-size:16px;}</style><script type="text/javascript" id="ce4wp_form_submit-js-extra">
|
||||
/* <![CDATA[ */
|
||||
var ce4wp_form_submit_data = {"siteUrl":"https:\/\/ak-21.de","url":"https:\/\/ak-21.de\/wp-admin\/admin-ajax.php","nonce":"9cb75718f3","listNonce":"3f4360f3ac"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/submit.js" id="ce4wp_form_submit-js"></script>
|
||||
<script type="text/javascript" src="../../../p/jetpack/9.8.1/_inc/build/photon/photon.min.js" id="jetpack-photon-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/jquery.fitvids.js" id="fitvids-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/skip-link-focus-fix.js" id="graphy-skip-link-focus-fix-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/navigation.js" id="graphy-navigation-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/doubletaptogo.min.js" id="double-tap-to-go-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/themes/graphy/js/functions.js" id="graphy-functions-js"></script>
|
||||
<script type="text/javascript" src="../../../wp-content/plugins/wordpress-countdown-widget/js/jquery.countdown.min.js" id="countdown-js"></script>
|
||||
<script type="text/javascript" src="../../../c/5.7.2/wp-includes/js/wp-embed.min.js" id="wp-embed-js"></script>
|
||||
<script src="../../../e-202125.js" defer=""></script>
|
||||
<script>
|
||||
_stq = window._stq || [];
|
||||
_stq.push([ 'view', {v:'ext',j:'1:9.8.1',blog:'194733867',post:'0',tz:'0',srv:'ak-21.de'} ]);
|
||||
_stq.push([ 'clickTrackerInit', '194733867', '0' ]);
|
||||
</script>
|
||||
|
||||
<script>(function($) {
|
||||
$.countdown.regional['custom'] = {
|
||||
labels: [
|
||||
'Jahre',
|
||||
'Monate',
|
||||
'Wochen',
|
||||
'Tage',
|
||||
'Stunden',
|
||||
'Minuten',
|
||||
'Sekunden'
|
||||
],
|
||||
labels1: [
|
||||
'Jahr',
|
||||
'Monat',
|
||||
'Woche',
|
||||
'Tag',
|
||||
'Stunde',
|
||||
'Minute',
|
||||
'Sekunde'
|
||||
],
|
||||
compactLabels: ['y', 'a', 'h', 'g'],
|
||||
whichLabels: null,
|
||||
timeSeparator: ':',
|
||||
isRTL: false
|
||||
};
|
||||
$.countdown.setDefaults($.countdown.regional['custom']);
|
||||
})(jQuery);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,844 @@
|
||||
<!DOCTYPE html><html lang="de-DE"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="pingback" href="../../xmlrpc.php">
|
||||
<title>Gästebuch – Ak21</title>
|
||||
<meta name="robots" content="max-image-preview:large">
|
||||
<link rel="alternate" type="application/rss+xml" title="Gästebuch-Feed" href="../../feed/gwolle_gb/index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<script type="text/javascript">
|
||||
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/ak-21.de\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"}};
|
||||
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
|
||||
</script>
|
||||
<style type="text/css">
|
||||
img.wp-smiley,
|
||||
img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
</style>
|
||||
<style type="text/css">
|
||||
.hasCountdown{text-shadow:transparent 0 1px 1px;overflow:hidden;padding:5px}
|
||||
.countdown_rtl{direction:rtl}
|
||||
.countdown_holding span{background-color:#ccc}
|
||||
.countdown_row{clear:both;width:100%;text-align:center}
|
||||
.countdown_show1 .countdown_section{width:98%}
|
||||
.countdown_show2 .countdown_section{width:48%}
|
||||
.countdown_show3 .countdown_section{width:32.5%}
|
||||
.countdown_show4 .countdown_section{width:24.5%}
|
||||
.countdown_show5 .countdown_section{width:19.5%}
|
||||
.countdown_show6 .countdown_section{width:16.25%}
|
||||
.countdown_show7 .countdown_section{width:14%}
|
||||
.countdown_section{display:block;float:left;font-size:75%;text-align:center;margin:3px 0}
|
||||
.countdown_amount{font-size:200%}
|
||||
.countdown_descr{display:block;width:100%}
|
||||
a.countdown_infolink{display:block;border-radius:10px;width:14px;height:13px;float:right;font-size:9px;line-height:13px;font-weight:700;text-align:center;position:relative;top:-15px;border:1px solid}
|
||||
#countdown-preview{padding:10px}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ayecode-ui-css" href="../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css" type="text/css" media="all">
|
||||
<style id="ayecode-ui-inline-css" type="text/css">
|
||||
|
||||
body.modal-open #wpadminbar{z-index:999}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" id="wp-block-library-css" href="../../c/5.7.2/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
|
||||
<style id="wp-block-library-inline-css" type="text/css">
|
||||
.has-text-align-justify{text-align:justify;}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ce4wp-subscribe-style-css" href="../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/subscribe.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-font-css" href="../../css/index.html" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="genericons-css" href="../../p/jetpack/9.8.1/_inc/genericons/genericons/genericons.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="normalize-css" href="../../wp-content/themes/graphy/css/normalize.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-style-css" href="../../wp-content/themes/graphy/style.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="../../releases/v5.15.3/css/all.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jetpack_css-css" href="../../p/jetpack/9.8.1/css/jetpack.css" type="text/css" media="all">
|
||||
<script type="text/javascript" src="../../c/5.7.2/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
|
||||
<script type="text/javascript" src="../../c/5.7.2/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js" id="select2-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/bootstrap.bundle.min.js" id="bootstrap-js-bundle-js"></script>
|
||||
<script type="text/javascript" id="bootstrap-js-bundle-js-after">
|
||||
|
||||
|
||||
/**
|
||||
* An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
|
||||
*
|
||||
* Simply add the class `greedy` to any <nav> menu and it will do the rest.
|
||||
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||||
* @ver 0.0.1
|
||||
*/
|
||||
function aui_init_greedy_nav(){
|
||||
jQuery('nav.greedy').each(function(i, obj) {
|
||||
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("being-greedy")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('navbar-expand');
|
||||
|
||||
// vars
|
||||
var $vlinks = '';
|
||||
var $dDownClass = '';
|
||||
if(jQuery(this).find('.navbar-nav').length){
|
||||
if(jQuery(this).find('.navbar-nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.navbar-nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
}else if(jQuery(this).find('.nav').length){
|
||||
if(jQuery(this).find('.nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
$dDownClass = ' mt-2 ';
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
|
||||
jQuery($vlinks).append('<li class="nav-item list-unstyled ml-auto greedy-btn d-none dropdown ">' +
|
||||
'<a href="javascript:void(0)" data-toggle="dropdown" class="nav-link"><i class="fas fa-ellipsis-h"></i> <span class="greedy-count badge badge-dark badge-pill"></span></a>' +
|
||||
'<ul class="greedy-links dropdown-menu dropdown-menu-right '+$dDownClass+'"></ul>' +
|
||||
'</li>');
|
||||
|
||||
var $hlinks = jQuery(this).find('.greedy-links');
|
||||
var $btn = jQuery(this).find('.greedy-btn');
|
||||
|
||||
var numOfItems = 0;
|
||||
var totalSpace = 0;
|
||||
var closingTime = 1000;
|
||||
var breakWidths = [];
|
||||
|
||||
// Get initial state
|
||||
$vlinks.children().outerWidth(function(i, w) {
|
||||
totalSpace += w;
|
||||
numOfItems += 1;
|
||||
breakWidths.push(totalSpace);
|
||||
});
|
||||
|
||||
var availableSpace, numOfVisibleItems, requiredSpace, buttonSpace ,timer;
|
||||
|
||||
/*
|
||||
The check function.
|
||||
*/
|
||||
function check() {
|
||||
|
||||
// Get instant state
|
||||
buttonSpace = $btn.width();
|
||||
availableSpace = $vlinks.width() - 10;
|
||||
numOfVisibleItems = $vlinks.children().length;
|
||||
requiredSpace = breakWidths[numOfVisibleItems - 1];
|
||||
|
||||
// There is not enough space
|
||||
if (numOfVisibleItems > 1 && requiredSpace > availableSpace) {
|
||||
$vlinks.children().last().prev().prependTo($hlinks);
|
||||
numOfVisibleItems -= 1;
|
||||
check();
|
||||
// There is more than enough space
|
||||
} else if (availableSpace > breakWidths[numOfVisibleItems]) {
|
||||
$hlinks.children().first().insertBefore($btn);
|
||||
numOfVisibleItems += 1;
|
||||
check();
|
||||
}
|
||||
// Update the button accordingly
|
||||
jQuery($btn).find(".greedy-count").html( numOfItems - numOfVisibleItems);
|
||||
if (numOfVisibleItems === numOfItems) {
|
||||
$btn.addClass('d-none');
|
||||
} else $btn.removeClass('d-none');
|
||||
}
|
||||
|
||||
// Window listeners
|
||||
jQuery(window).resize(function() {
|
||||
check();
|
||||
});
|
||||
|
||||
// do initial check
|
||||
check();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate Select2 items.
|
||||
*/
|
||||
function aui_init_select2(){
|
||||
jQuery("select.aui-select2").select2();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to convert a time value to a "ago" time text.
|
||||
*
|
||||
* @param selector string The .class selector
|
||||
*/
|
||||
function aui_time_ago(selector) {
|
||||
|
||||
var templates = {
|
||||
prefix: "",
|
||||
suffix: " ago",
|
||||
seconds: "less than a minute",
|
||||
minute: "about a minute",
|
||||
minutes: "%d minutes",
|
||||
hour: "about an hour",
|
||||
hours: "about %d hours",
|
||||
day: "a day",
|
||||
days: "%d days",
|
||||
month: "about a month",
|
||||
months: "%d months",
|
||||
year: "about a year",
|
||||
years: "%d years"
|
||||
};
|
||||
var template = function (t, n) {
|
||||
return templates[t] && templates[t].replace(/%d/i, Math.abs(Math.round(n)));
|
||||
};
|
||||
|
||||
var timer = function (time) {
|
||||
if (!time)
|
||||
return;
|
||||
time = time.replace(/\.\d+/, ""); // remove milliseconds
|
||||
time = time.replace(/-/, "/").replace(/-/, "/");
|
||||
time = time.replace(/T/, " ").replace(/Z/, " UTC");
|
||||
time = time.replace(/([\+\-]\d\d)\:?(\d\d)/, " $1$2"); // -04:00 -> -0400
|
||||
time = new Date(time * 1000 || time);
|
||||
|
||||
var now = new Date();
|
||||
var seconds = ((now.getTime() - time) * .001) >> 0;
|
||||
var minutes = seconds / 60;
|
||||
var hours = minutes / 60;
|
||||
var days = hours / 24;
|
||||
var years = days / 365;
|
||||
|
||||
return templates.prefix + (
|
||||
seconds < 45 && template('seconds', seconds) ||
|
||||
seconds < 90 && template('minute', 1) ||
|
||||
minutes < 45 && template('minutes', minutes) ||
|
||||
minutes < 90 && template('hour', 1) ||
|
||||
hours < 24 && template('hours', hours) ||
|
||||
hours < 42 && template('day', 1) ||
|
||||
days < 30 && template('days', days) ||
|
||||
days < 45 && template('month', 1) ||
|
||||
days < 365 && template('months', days / 30) ||
|
||||
years < 1.5 && template('year', 1) ||
|
||||
template('years', years)
|
||||
) + templates.suffix;
|
||||
};
|
||||
|
||||
var elements = document.getElementsByClassName(selector);
|
||||
if (selector && elements && elements.length) {
|
||||
for (var i in elements) {
|
||||
var $el = elements[i];
|
||||
if (typeof $el === 'object') {
|
||||
$el.innerHTML = '<i class="far fa-clock"></i> ' + timer($el.getAttribute('title') || $el.getAttribute('datetime'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// update time every minute
|
||||
setTimeout(function() {
|
||||
aui_time_ago(selector);
|
||||
}, 60000);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate tooltips on the page.
|
||||
*/
|
||||
function aui_init_tooltips(){
|
||||
jQuery('[data-toggle="tooltip"]').tooltip();
|
||||
jQuery('[data-toggle="popover"]').popover();
|
||||
jQuery('[data-toggle="popover-html"]').popover({
|
||||
html: true
|
||||
});
|
||||
|
||||
// fix popover container compatibility
|
||||
jQuery('[data-toggle="popover"],[data-toggle="popover-html"]').on('inserted.bs.popover', function () {
|
||||
jQuery('body > .popover').wrapAll("<div class='bsui' />");
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate flatpickrs on the page.
|
||||
*/
|
||||
$aui_doing_init_flatpickr = false;
|
||||
function aui_init_flatpickr(){
|
||||
if ( jQuery.isFunction(jQuery.fn.flatpickr) && !$aui_doing_init_flatpickr) {
|
||||
$aui_doing_init_flatpickr = true;
|
||||
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
|
||||
}
|
||||
$aui_doing_init_flatpickr = false;
|
||||
}
|
||||
|
||||
function aui_modal($title,$body,$footer,$dismissible,$class,$dialog_class) {
|
||||
if(!$class){$class = '';}
|
||||
if(!$dialog_class){$dialog_class = '';}
|
||||
if(!$body){$body = '<div class="text-center"><div class="spinner-border" role="status"></div></div>';}
|
||||
// remove it first
|
||||
jQuery('.aui-modal').modal('hide').modal('dispose').remove();
|
||||
jQuery('.modal-backdrop').remove();
|
||||
|
||||
var $modal = '';
|
||||
|
||||
$modal += '<div class="modal aui-modal fade shadow bsui '+$class+'" tabindex="-1">'+
|
||||
'<div class="modal-dialog modal-dialog-centered '+$dialog_class+'">'+
|
||||
'<div class="modal-content">';
|
||||
|
||||
if($title) {
|
||||
$modal += '<div class="modal-header">' +
|
||||
'<h5 class="modal-title">' + $title + '</h5>';
|
||||
|
||||
if ($dismissible) {
|
||||
$modal += '<button type="button" class="close" data-dismiss="modal" aria-label="Close">' +
|
||||
'<span aria-hidden="true">×</span>' +
|
||||
'</button>';
|
||||
}
|
||||
|
||||
$modal += '</div>';
|
||||
}
|
||||
$modal += '<div class="modal-body">'+
|
||||
$body+
|
||||
'</div>';
|
||||
|
||||
if($footer){
|
||||
$modal += '<div class="modal-footer">'+
|
||||
$footer +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
$modal +='</div>'+
|
||||
'</div>'+
|
||||
'</div>';
|
||||
|
||||
jQuery('body').append($modal);
|
||||
|
||||
jQuery('.aui-modal').modal('hide').modal({
|
||||
//backdrop: 'static'
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Show / hide fields depending on conditions.
|
||||
*/
|
||||
function aui_conditional_fields(form){
|
||||
jQuery(form).find(".aui-conditional-field").each(function () {
|
||||
|
||||
var $element_require = jQuery(this).data('element-require');
|
||||
|
||||
if ($element_require) {
|
||||
|
||||
$element_require = $element_require.replace("'", "'"); // replace single quotes
|
||||
$element_require = $element_require.replace(""", '"'); // replace double quotes
|
||||
|
||||
if (aui_check_form_condition($element_require,form)) {
|
||||
jQuery(this).removeClass('d-none');
|
||||
} else {
|
||||
jQuery(this).addClass('d-none');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Check form condition
|
||||
*/
|
||||
function aui_check_form_condition(condition,form) {
|
||||
if (form) {
|
||||
condition = condition.replace(/\(form\)/g, "('"+form+"')");
|
||||
}
|
||||
return new Function("return " + condition+";")();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to determine if a element is on screen.
|
||||
*/
|
||||
jQuery.fn.aui_isOnScreen = function(){
|
||||
|
||||
var win = jQuery(window);
|
||||
|
||||
var viewport = {
|
||||
top : win.scrollTop(),
|
||||
left : win.scrollLeft()
|
||||
};
|
||||
viewport.right = viewport.left + win.width();
|
||||
viewport.bottom = viewport.top + win.height();
|
||||
|
||||
var bounds = this.offset();
|
||||
bounds.right = bounds.left + this.outerWidth();
|
||||
bounds.bottom = bounds.top + this.outerHeight();
|
||||
|
||||
return (!(viewport.right < bounds.left || viewport.left > bounds.right || viewport.bottom < bounds.top || viewport.top > bounds.bottom));
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Maybe show multiple carousel items if set to do so.
|
||||
*/
|
||||
function aui_carousel_maybe_show_multiple_items($carousel){
|
||||
var $items = {};
|
||||
var $item_count = 0;
|
||||
|
||||
// maybe backup
|
||||
if(!jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).append('<div class="carousel-inner-original d-none">'+jQuery($carousel).find('.carousel-inner').html()+'</div>');
|
||||
}
|
||||
|
||||
// Get the original items html
|
||||
jQuery($carousel).find('.carousel-inner-original .carousel-item').each(function () {
|
||||
$items[$item_count] = jQuery(this).html();
|
||||
$item_count++;
|
||||
});
|
||||
|
||||
// bail if no items
|
||||
if(!$item_count){return;}
|
||||
|
||||
if(jQuery(window).width() <= 576){
|
||||
// maybe restore original
|
||||
if(jQuery($carousel).find('.carousel-inner').hasClass('aui-multiple-items') && jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).find('.carousel-inner').removeClass('aui-multiple-items').html(jQuery($carousel).find('.carousel-inner-original').html());
|
||||
jQuery($carousel).find(".carousel-indicators li").removeClass("d-none");
|
||||
}
|
||||
|
||||
}else{
|
||||
// new items
|
||||
var $md_count = jQuery($carousel).data('limit_show');
|
||||
var $new_items = '';
|
||||
var $new_items_count = 0;
|
||||
var $new_item_count = 0;
|
||||
var $closed = true;
|
||||
Object.keys($items).forEach(function(key,index) {
|
||||
|
||||
// close
|
||||
if(index != 0 && Number.isInteger(index/$md_count) ){
|
||||
$new_items += '</div></div>';
|
||||
$closed = true;
|
||||
}
|
||||
|
||||
// open
|
||||
if(index == 0 || Number.isInteger(index/$md_count) ){
|
||||
$active = index == 0 ? 'active' : '';
|
||||
$new_items += '<div class="carousel-item '+$active+'"><div class="row m-0">';
|
||||
$closed = false;
|
||||
$new_items_count++;
|
||||
$new_item_count = 0;
|
||||
}
|
||||
|
||||
// content
|
||||
$new_items += '<div class="col pr-1 pl-0">'+$items[index]+'</div>';
|
||||
$new_item_count++;
|
||||
|
||||
|
||||
});
|
||||
|
||||
// close if not closed in the loop
|
||||
if(!$closed){
|
||||
// check for spares
|
||||
if($md_count-$new_item_count > 0){
|
||||
$placeholder_count = $md_count-$new_item_count;
|
||||
while($placeholder_count > 0){
|
||||
$new_items += '<div class="col pr-1 pl-0"></div>';
|
||||
$placeholder_count--;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$new_items += '</div></div>';
|
||||
}
|
||||
|
||||
// insert the new items
|
||||
jQuery($carousel).find('.carousel-inner').addClass('aui-multiple-items').html($new_items);
|
||||
|
||||
// fix any lazyload images in the active slider
|
||||
jQuery($carousel).find('.carousel-item.active img').each(function () {
|
||||
// fix the srcset
|
||||
if(real_srcset = jQuery(this).attr("data-srcset")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("srcset",real_srcset);
|
||||
}
|
||||
// fix the src
|
||||
if(real_src = jQuery(this).attr("data-src")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("src",real_src);
|
||||
}
|
||||
});
|
||||
|
||||
// maybe fix carousel indicators
|
||||
$hide_count = $new_items_count-1;
|
||||
jQuery($carousel).find(".carousel-indicators li:gt("+$hide_count+")").addClass("d-none");
|
||||
}
|
||||
|
||||
// trigger a global action to say we have
|
||||
jQuery( window ).trigger( "aui_carousel_multiple" );
|
||||
}
|
||||
|
||||
/**
|
||||
* Init Multiple item carousels.
|
||||
*/
|
||||
function aui_init_carousel_multiple_items(){
|
||||
jQuery(window).resize(function(){
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
});
|
||||
|
||||
// run now
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Allow navs to use multiple sub menus.
|
||||
*/
|
||||
function init_nav_sub_menus(){
|
||||
|
||||
jQuery('.navbar-multi-sub-menus').each(function(i, obj) {
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("has-sub-sub-menus")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('has-sub-sub-menus');
|
||||
|
||||
jQuery(this).find( '.dropdown-menu a.dropdown-toggle' ).on( 'click', function ( e ) {
|
||||
var $el = jQuery( this );
|
||||
$el.toggleClass('active-dropdown');
|
||||
var $parent = jQuery( this ).offsetParent( ".dropdown-menu" );
|
||||
if ( !jQuery( this ).next().hasClass( 'show' ) ) {
|
||||
jQuery( this ).parents( '.dropdown-menu' ).first().find( '.show' ).removeClass( "show" );
|
||||
}
|
||||
var $subMenu = jQuery( this ).next( ".dropdown-menu" );
|
||||
$subMenu.toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parent( "li" ).toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parents( 'li.nav-item.dropdown.show' ).on( 'hidden.bs.dropdown', function ( e ) {
|
||||
jQuery( '.dropdown-menu .show' ).removeClass( "show" );
|
||||
$el.removeClass('active-dropdown');
|
||||
} );
|
||||
|
||||
if ( !$parent.parent().hasClass( 'navbar-nav' ) ) {
|
||||
$el.next().addClass('position-relative border-top border-bottom');
|
||||
}
|
||||
|
||||
return false;
|
||||
} );
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Initiate all AUI JS.
|
||||
*/
|
||||
function aui_init(){
|
||||
// nav menu submenus
|
||||
init_nav_sub_menus();
|
||||
|
||||
// init tooltips
|
||||
aui_init_tooltips();
|
||||
|
||||
// init select2
|
||||
aui_init_select2();
|
||||
|
||||
// init flatpickr
|
||||
aui_init_flatpickr();
|
||||
|
||||
// init Greedy nav
|
||||
aui_init_greedy_nav();
|
||||
|
||||
// Set times to time ago
|
||||
aui_time_ago('timeago');
|
||||
|
||||
// init multiple item carousels
|
||||
aui_init_carousel_multiple_items();
|
||||
}
|
||||
|
||||
// run on window loaded
|
||||
jQuery(window).on("load",function() {
|
||||
aui_init();
|
||||
});
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<link rel="https://api.w.org/" href="../wp-json/index.html"><link rel="alternate" type="application/json" href="../wp-json/wp/v2/pages/210/index.html"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="../../xmlrpc.php">
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="../../wp-includes/wlwmanifest.xml">
|
||||
<meta name="generator" content="WordPress 5.7.2">
|
||||
<link rel="canonical" href="index.html">
|
||||
<link rel="shortlink" href="../../index.html">
|
||||
<link rel="alternate" type="application/json+oembed" href="../wp-json/oembed/1.0/embed/index.html">
|
||||
<link rel="alternate" type="text/xml+oembed" href="../wp-json/oembed/1.0/embed/index.html">
|
||||
<style type="text/css">img#wpstats{display:none}</style>
|
||||
<style type="text/css">
|
||||
/* Colors */
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="page-template-default page page-id-210 no-sidebar footer-0 has-avatars">
|
||||
<div id="page" class="hfeed site">
|
||||
<a class="skip-link screen-reader-text" href="#content/index.html">Springe zum Inhalt</a>
|
||||
|
||||
<header id="masthead" class="site-header">
|
||||
|
||||
<div class="site-branding">
|
||||
<div class="site-title"><a href="../../index.html" rel="home">Ak21</a></div>
|
||||
<div class="site-description">Jahrbuch der JHS</div>
|
||||
</div><!-- .site-branding -->
|
||||
|
||||
<nav id="site-navigation" class="main-navigation">
|
||||
<button class="menu-toggle"><span class="menu-text">Menü</span></button>
|
||||
<div class="menu-normal-container"><ul id="menu-normal" class="menu"><li id="menu-item-207" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-207"><a href="../steckbriefe/index.html">Steckbriefe</a></li>
|
||||
<li id="menu-item-208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-208"><a href="../umfrage-ergebnisse/index.html">Umfrage Ergebnisse</a></li>
|
||||
<li id="menu-item-213" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-210 current_page_item menu-item-213"><a href="index.html" aria-current="page">Gästebuch</a></li>
|
||||
</ul></div> <form role="search" method="get" class="search-form" action="../../index.html">
|
||||
<label>
|
||||
<span class="screen-reader-text">Suche nach:</span>
|
||||
<input type="search" class="search-field" placeholder="Suche …" value="" name="s">
|
||||
</label>
|
||||
<input type="submit" class="search-submit" value="Suche">
|
||||
</form> </nav><!-- #site-navigation -->
|
||||
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="content" class="site-content">
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main">
|
||||
|
||||
|
||||
|
||||
<article id="post-210" class="post-210 page type-page status-publish hentry">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title">Gästebuch</h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
|
||||
<p>Hier könnt ihr etwas in Form von Text hinterlassen. Viel Spaß!</p>
|
||||
|
||||
|
||||
<div class="gwolle-gb"><div class="gwolle_gb_messages_top_container"></div>
|
||||
<div class="gwolle-gb-write-button">
|
||||
<input type="button" name="gwolle-gb-write-button" class="button btn btn-default " value="» Neuen Eintrag schreiben">
|
||||
</div>
|
||||
<form action="index.html" method="POST" class="gwolle-gb-write gwolle-gb-hide gwolle-gb-float gwolle_gb_form_ajax gwolle-gb-form-ajax">
|
||||
<h3>Eintrag für das Gästebuch schreiben</h3>
|
||||
<button type="button" class="gb-notice-dismiss">x<span class="screen-reader-text">Dieses Formular ausblenden</span></button>
|
||||
|
||||
<input type="hidden" name="gwolle_gb_function" class="gwolle_gb_function" value="add_entry"><input type="hidden" name="gwolle_gb_book_id" class="gwolle_gb_book_id" value="1"><div class="gwolle_gb_5bd5118fe317ab0ec7b326f453b657ec">
|
||||
<div class="label"><label for="gwolle_gb_5bd5118fe317ab0ec7b326f453b657ec" class="text-info">Name *</label></div>
|
||||
<div class="input"><input class="wp-exclude-emoji gwolle_gb_5bd5118fe317ab0ec7b326f453b657ec" value="" type="text" name="gwolle_gb_5bd5118fe317ab0ec7b326f453b657ec" required=""></div>
|
||||
</div>
|
||||
<div class="clearBoth"> </div>
|
||||
<div class="gwolle_gb_c89d394797faa0da464f8a34bb0db61f" style="display:none;">
|
||||
<div class="label">
|
||||
<label for="gwolle_gb_c89d394797faa0da464f8a34bb0db61f" class="text-primary">Hier nichts eingeben</label>
|
||||
<label for="gwolle_gb_826ff90654f3f8d92d523c200fc0ea4d" class="text-primary">Hier nichts eingeben</label>
|
||||
</div>
|
||||
<div class="input">
|
||||
<input value="92" type="text" name="gwolle_gb_c89d394797faa0da464f8a34bb0db61f" class="gwolle_gb_c89d394797faa0da464f8a34bb0db61f">
|
||||
<input value="" type="text" name="gwolle_gb_826ff90654f3f8d92d523c200fc0ea4d" class="gwolle_gb_826ff90654f3f8d92d523c200fc0ea4d">
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearBoth"></div>
|
||||
<div class="gwolle_gb_3c0288f01903f15a176caad9e91c12fe" style="display:none;">
|
||||
<div class="label">
|
||||
<label for="gwolle_gb_3c0288f01903f15a176caad9e91c12fe" class="text-primary">Hier nichts eingeben</label>
|
||||
<label for="gwolle_gb_7814c5c9695b724df16d4edc8b347f09" class="text-primary">Hier nichts eingeben</label>
|
||||
</div>
|
||||
<div class="input">
|
||||
<input value="14769" type="text" name="gwolle_gb_3c0288f01903f15a176caad9e91c12fe" class="gwolle_gb_3c0288f01903f15a176caad9e91c12fe">
|
||||
<input value="14769" type="text" name="gwolle_gb_7814c5c9695b724df16d4edc8b347f09" class="gwolle_gb_7814c5c9695b724df16d4edc8b347f09">
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearBoth"></div><div class="gwolle_gb_content">
|
||||
<div class="label"><label for="gwolle_gb_content" class="text-info">Gästebucheintrag *</label></div>
|
||||
<div class="input"><textarea name="gwolle_gb_content" class="gwolle_gb_content wp-exclude-emoji" required=""></textarea></div>
|
||||
</div>
|
||||
<div class="clearBoth"> </div>
|
||||
<div class="gwolle_gb_privacy">
|
||||
<div class="label"><label for="gwolle_gb_privacy" class="text-info">Datenschutzerklärung akzeptieren *</label></div>
|
||||
<div class="input"><input type="checkbox" name="gwolle_gb_privacy" class="gwolle_gb_privacy" required=""></div>
|
||||
</div>
|
||||
<div class="clearBoth"> </div><input type="hidden" class="gwolle_gb_40e54790defabc8a472e93da95607812" name="gwolle_gb_40e54790defabc8a472e93da95607812" value="785179c209">
|
||||
<div class="gwolle_gb_messages_bottom_container"></div>
|
||||
|
||||
<noscript><div class="no-js">Warnung: Dieses Formular kann nur verwendet werden, wenn in deinem Browser JavaScript aktiviert ist.</div></noscript>
|
||||
|
||||
<div class="gwolle_gb_submit">
|
||||
<div class="label gwolle-gb-invisible text-muted"> </div>
|
||||
<div class="input">
|
||||
<input type="submit" name="gwolle_gb_submit" class="gwolle_gb_submit button btn btn-primary " value="Absenden">
|
||||
<span class="gwolle_gb_submit_ajax_icon"></span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearBoth"> </div>
|
||||
|
||||
<div class="gwolle_gb_notice">
|
||||
Mit * gekennzeichnete Felder sind erforderlich.<br>
|
||||
<br>
|
||||
Es ist möglich, dass dein Eintrag im Gästebuch erst sichtbar ist, nachdem wir ihn überprüft haben.
|
||||
</div></form><div class="gwolle-gb-read " data-book_id="1"><div id="gwolle-gb-total">4 Einträge</div><!-- Gwolle-GB Entry: Default Template Loaded -->
|
||||
<div class="gb-entry gb-entry_8 gb-entry-count_1 gwolle_gb_uneven gwolle-gb-uneven gwolle_gb_first gwolle-gb-first">
|
||||
<article>
|
||||
<div class="gb-author-info">
|
||||
<span class="gb-author-name">Henry 🙂
|
||||
</span>
|
||||
<span class="gb-datetime">
|
||||
<span class="gb-date"><span class="gb-date-wrote-text"> schrieb am</span><span class="gb-date-text"> Juni 24, 2021</span>
|
||||
</span><span class="gb-time">
|
||||
<span class="gb-time-at-text"> um</span>
|
||||
<span class="gb-time-text"> 9:59 pm</span>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="gb-entry-content">Danke Calvin für dieses großartige Jahrbuch. Mega Idee 😂
|
||||
Alles Gute für die Zukunft!
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="gb-entry gb-entry_3 gb-entry-count_2 gwolle_gb_even gwolle-gb-even">
|
||||
<article>
|
||||
<div class="gb-author-info">
|
||||
<span class="gb-author-name">Lukas
|
||||
</span>
|
||||
<span class="gb-datetime">
|
||||
<span class="gb-date"><span class="gb-date-wrote-text"> schrieb am</span><span class="gb-date-text"> Juni 11, 2021</span>
|
||||
</span><span class="gb-time">
|
||||
<span class="gb-time-at-text"> um</span>
|
||||
<span class="gb-time-text"> 8:37 am</span>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="gb-entry-content">Das ist die beste Seite!
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="gb-entry gb-entry_2 gb-entry-count_3 gwolle_gb_uneven gwolle-gb-uneven">
|
||||
<article>
|
||||
<div class="gb-author-info">
|
||||
<span class="gb-author-name">Sreiner
|
||||
</span>
|
||||
<span class="gb-datetime">
|
||||
<span class="gb-date"><span class="gb-date-wrote-text"> schrieb am</span><span class="gb-date-text"> Juni 9, 2021</span>
|
||||
</span><span class="gb-time">
|
||||
<span class="gb-time-at-text"> um</span>
|
||||
<span class="gb-time-text"> 5:36 pm</span>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="gb-entry-content">Moin, die Seite ist auch fürs Handy optimiert, sehr schön ^^
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="gb-entry gb-entry_1 gb-entry-count_4 gwolle_gb_even gwolle-gb-even">
|
||||
<article>
|
||||
<div class="gb-author-info">
|
||||
<span class="gb-author-name">Calvin
|
||||
</span>
|
||||
<span class="gb-datetime">
|
||||
<span class="gb-date"><span class="gb-date-wrote-text"> schrieb am</span><span class="gb-date-text"> Juni 9, 2021</span>
|
||||
</span><span class="gb-time">
|
||||
<span class="gb-time-at-text"> um</span>
|
||||
<span class="gb-time-text"> 3:49 pm</span>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="gb-entry-content">Hallo das ist nen test
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div></div>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-## -->
|
||||
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
|
||||
<footer id="colophon" class="site-footer">
|
||||
|
||||
|
||||
<div class="site-bottom">
|
||||
|
||||
<div class="site-info">
|
||||
<div class="site-copyright">
|
||||
© 2021 <a href="../../index.html" rel="home">Ak21</a>
|
||||
</div><!-- .site-copyright -->
|
||||
<div class="site-credit">
|
||||
Powered by <a href="https://de.wordpress.org/">WordPress</a> <span class="site-credit-sep"> | </span>
|
||||
Theme: <a href="http://themegraphy.com/wordpress-themes/graphy/">Graphy</a> von Themegraphy </div><!-- .site-credit -->
|
||||
</div><!-- .site-info -->
|
||||
|
||||
</div><!-- .site-bottom -->
|
||||
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<style>html{font-size:16px;}</style><link rel="stylesheet" id="gwolle_gb_frontend_css-css" href="../../wp-content/plugins/gwolle-gb/frontend/css/gwolle-gb-frontend.css" type="text/css" media="screen">
|
||||
<script type="text/javascript" id="ce4wp_form_submit-js-extra">
|
||||
/* <![CDATA[ */
|
||||
var ce4wp_form_submit_data = {"siteUrl":"https:\/\/ak-21.de","url":"https:\/\/ak-21.de\/wp-admin\/admin-ajax.php","nonce":"9cb75718f3","listNonce":"3f4360f3ac"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/submit.js" id="ce4wp_form_submit-js"></script>
|
||||
<script type="text/javascript" src="../../p/jetpack/9.8.1/_inc/build/photon/photon.min.js" id="jetpack-photon-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/jquery.fitvids.js" id="fitvids-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/skip-link-focus-fix.js" id="graphy-skip-link-focus-fix-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/navigation.js" id="graphy-navigation-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/doubletaptogo.min.js" id="double-tap-to-go-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/functions.js" id="graphy-functions-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/wordpress-countdown-widget/js/jquery.countdown.min.js" id="countdown-js"></script>
|
||||
<script type="text/javascript" src="../../c/5.7.2/wp-includes/js/wp-embed.min.js" id="wp-embed-js"></script>
|
||||
<script type="text/javascript" id="gwolle_gb_frontend_js-js-extra">
|
||||
/* <![CDATA[ */
|
||||
var gwolle_gb_frontend_script = {"ajax_url":"https:\/\/ak-21.de\/wp-admin\/admin-ajax.php","load_message":"Mehr laden...","end_message":"Keine Eintr\u00e4ge mehr vorhanden.","honeypot":"gwolle_gb_c89d394797faa0da464f8a34bb0db61f","honeypot2":"gwolle_gb_826ff90654f3f8d92d523c200fc0ea4d","timeout":"gwolle_gb_3c0288f01903f15a176caad9e91c12fe","timeout2":"gwolle_gb_7814c5c9695b724df16d4edc8b347f09"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/gwolle-gb/frontend/js/gwolle-gb-frontend.js" id="gwolle_gb_frontend_js-js"></script>
|
||||
<script src="../../e-202125.js" defer=""></script>
|
||||
<script>
|
||||
_stq = window._stq || [];
|
||||
_stq.push([ 'view', {v:'ext',j:'1:9.8.1',blog:'194733867',post:'210',tz:'0',srv:'ak-21.de'} ]);
|
||||
_stq.push([ 'clickTrackerInit', '194733867', '210' ]);
|
||||
</script>
|
||||
|
||||
<script>(function($) {
|
||||
$.countdown.regional['custom'] = {
|
||||
labels: [
|
||||
'Jahre',
|
||||
'Monate',
|
||||
'Wochen',
|
||||
'Tage',
|
||||
'Stunden',
|
||||
'Minuten',
|
||||
'Sekunden'
|
||||
],
|
||||
labels1: [
|
||||
'Jahr',
|
||||
'Monat',
|
||||
'Woche',
|
||||
'Tag',
|
||||
'Stunde',
|
||||
'Minute',
|
||||
'Sekunde'
|
||||
],
|
||||
compactLabels: ['y', 'a', 'h', 'g'],
|
||||
whichLabels: null,
|
||||
timeSeparator: ':',
|
||||
isRTL: false
|
||||
};
|
||||
$.countdown.setDefaults($.countdown.regional['custom']);
|
||||
})(jQuery);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,723 @@
|
||||
<!DOCTYPE html><html lang="de-DE"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="pingback" href="../../xmlrpc.php">
|
||||
<title>Umfrage Ergebnisse – Ak21</title>
|
||||
<meta name="robots" content="max-image-preview:large">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="dns-prefetch" href="../../index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Feed" href="../feed/index.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Ak21 » Kommentar-Feed" href="../comments/feed/index.html">
|
||||
<script type="text/javascript">
|
||||
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/ak-21.de\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"}};
|
||||
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
|
||||
</script>
|
||||
<style type="text/css">
|
||||
img.wp-smiley,
|
||||
img.emoji {
|
||||
display: inline !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
height: 1em !important;
|
||||
width: 1em !important;
|
||||
margin: 0 .07em !important;
|
||||
vertical-align: -0.1em !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
</style>
|
||||
<style type="text/css">
|
||||
.hasCountdown{text-shadow:transparent 0 1px 1px;overflow:hidden;padding:5px}
|
||||
.countdown_rtl{direction:rtl}
|
||||
.countdown_holding span{background-color:#ccc}
|
||||
.countdown_row{clear:both;width:100%;text-align:center}
|
||||
.countdown_show1 .countdown_section{width:98%}
|
||||
.countdown_show2 .countdown_section{width:48%}
|
||||
.countdown_show3 .countdown_section{width:32.5%}
|
||||
.countdown_show4 .countdown_section{width:24.5%}
|
||||
.countdown_show5 .countdown_section{width:19.5%}
|
||||
.countdown_show6 .countdown_section{width:16.25%}
|
||||
.countdown_show7 .countdown_section{width:14%}
|
||||
.countdown_section{display:block;float:left;font-size:75%;text-align:center;margin:3px 0}
|
||||
.countdown_amount{font-size:200%}
|
||||
.countdown_descr{display:block;width:100%}
|
||||
a.countdown_infolink{display:block;border-radius:10px;width:14px;height:13px;float:right;font-size:9px;line-height:13px;font-weight:700;text-align:center;position:relative;top:-15px;border:1px solid}
|
||||
#countdown-preview{padding:10px}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ayecode-ui-css" href="../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css" type="text/css" media="all">
|
||||
<style id="ayecode-ui-inline-css" type="text/css">
|
||||
|
||||
body.modal-open #wpadminbar{z-index:999}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" id="wp-block-library-css" href="../../c/5.7.2/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
|
||||
<style id="wp-block-library-inline-css" type="text/css">
|
||||
.has-text-align-justify{text-align:justify;}
|
||||
</style>
|
||||
<link rel="stylesheet" id="ce4wp-subscribe-style-css" href="../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/subscribe.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-font-css" href="../../css/index.html" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="genericons-css" href="../../p/jetpack/9.8.1/_inc/genericons/genericons/genericons.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="normalize-css" href="../../wp-content/themes/graphy/css/normalize.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="graphy-style-css" href="../../wp-content/themes/graphy/style.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="../../releases/v5.15.3/css/all.css" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jetpack_css-css" href="../../p/jetpack/9.8.1/css/jetpack.css" type="text/css" media="all">
|
||||
<script type="text/javascript" src="../../c/5.7.2/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
|
||||
<script type="text/javascript" src="../../c/5.7.2/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js" id="select2-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/ayecode-connect/vendor/ayecode/wp-ayecode-ui/assets/js/bootstrap.bundle.min.js" id="bootstrap-js-bundle-js"></script>
|
||||
<script type="text/javascript" id="bootstrap-js-bundle-js-after">
|
||||
|
||||
|
||||
/**
|
||||
* An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
|
||||
*
|
||||
* Simply add the class `greedy` to any <nav> menu and it will do the rest.
|
||||
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||||
* @ver 0.0.1
|
||||
*/
|
||||
function aui_init_greedy_nav(){
|
||||
jQuery('nav.greedy').each(function(i, obj) {
|
||||
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("being-greedy")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('navbar-expand');
|
||||
|
||||
// vars
|
||||
var $vlinks = '';
|
||||
var $dDownClass = '';
|
||||
if(jQuery(this).find('.navbar-nav').length){
|
||||
if(jQuery(this).find('.navbar-nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.navbar-nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
}else if(jQuery(this).find('.nav').length){
|
||||
if(jQuery(this).find('.nav').hasClass("being-greedy")){return true;}
|
||||
$vlinks = jQuery(this).find('.nav').addClass("being-greedy w-100").removeClass('overflow-hidden');
|
||||
$dDownClass = ' mt-2 ';
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
|
||||
jQuery($vlinks).append('<li class="nav-item list-unstyled ml-auto greedy-btn d-none dropdown ">' +
|
||||
'<a href="javascript:void(0)" data-toggle="dropdown" class="nav-link"><i class="fas fa-ellipsis-h"></i> <span class="greedy-count badge badge-dark badge-pill"></span></a>' +
|
||||
'<ul class="greedy-links dropdown-menu dropdown-menu-right '+$dDownClass+'"></ul>' +
|
||||
'</li>');
|
||||
|
||||
var $hlinks = jQuery(this).find('.greedy-links');
|
||||
var $btn = jQuery(this).find('.greedy-btn');
|
||||
|
||||
var numOfItems = 0;
|
||||
var totalSpace = 0;
|
||||
var closingTime = 1000;
|
||||
var breakWidths = [];
|
||||
|
||||
// Get initial state
|
||||
$vlinks.children().outerWidth(function(i, w) {
|
||||
totalSpace += w;
|
||||
numOfItems += 1;
|
||||
breakWidths.push(totalSpace);
|
||||
});
|
||||
|
||||
var availableSpace, numOfVisibleItems, requiredSpace, buttonSpace ,timer;
|
||||
|
||||
/*
|
||||
The check function.
|
||||
*/
|
||||
function check() {
|
||||
|
||||
// Get instant state
|
||||
buttonSpace = $btn.width();
|
||||
availableSpace = $vlinks.width() - 10;
|
||||
numOfVisibleItems = $vlinks.children().length;
|
||||
requiredSpace = breakWidths[numOfVisibleItems - 1];
|
||||
|
||||
// There is not enough space
|
||||
if (numOfVisibleItems > 1 && requiredSpace > availableSpace) {
|
||||
$vlinks.children().last().prev().prependTo($hlinks);
|
||||
numOfVisibleItems -= 1;
|
||||
check();
|
||||
// There is more than enough space
|
||||
} else if (availableSpace > breakWidths[numOfVisibleItems]) {
|
||||
$hlinks.children().first().insertBefore($btn);
|
||||
numOfVisibleItems += 1;
|
||||
check();
|
||||
}
|
||||
// Update the button accordingly
|
||||
jQuery($btn).find(".greedy-count").html( numOfItems - numOfVisibleItems);
|
||||
if (numOfVisibleItems === numOfItems) {
|
||||
$btn.addClass('d-none');
|
||||
} else $btn.removeClass('d-none');
|
||||
}
|
||||
|
||||
// Window listeners
|
||||
jQuery(window).resize(function() {
|
||||
check();
|
||||
});
|
||||
|
||||
// do initial check
|
||||
check();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate Select2 items.
|
||||
*/
|
||||
function aui_init_select2(){
|
||||
jQuery("select.aui-select2").select2();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to convert a time value to a "ago" time text.
|
||||
*
|
||||
* @param selector string The .class selector
|
||||
*/
|
||||
function aui_time_ago(selector) {
|
||||
|
||||
var templates = {
|
||||
prefix: "",
|
||||
suffix: " ago",
|
||||
seconds: "less than a minute",
|
||||
minute: "about a minute",
|
||||
minutes: "%d minutes",
|
||||
hour: "about an hour",
|
||||
hours: "about %d hours",
|
||||
day: "a day",
|
||||
days: "%d days",
|
||||
month: "about a month",
|
||||
months: "%d months",
|
||||
year: "about a year",
|
||||
years: "%d years"
|
||||
};
|
||||
var template = function (t, n) {
|
||||
return templates[t] && templates[t].replace(/%d/i, Math.abs(Math.round(n)));
|
||||
};
|
||||
|
||||
var timer = function (time) {
|
||||
if (!time)
|
||||
return;
|
||||
time = time.replace(/\.\d+/, ""); // remove milliseconds
|
||||
time = time.replace(/-/, "/").replace(/-/, "/");
|
||||
time = time.replace(/T/, " ").replace(/Z/, " UTC");
|
||||
time = time.replace(/([\+\-]\d\d)\:?(\d\d)/, " $1$2"); // -04:00 -> -0400
|
||||
time = new Date(time * 1000 || time);
|
||||
|
||||
var now = new Date();
|
||||
var seconds = ((now.getTime() - time) * .001) >> 0;
|
||||
var minutes = seconds / 60;
|
||||
var hours = minutes / 60;
|
||||
var days = hours / 24;
|
||||
var years = days / 365;
|
||||
|
||||
return templates.prefix + (
|
||||
seconds < 45 && template('seconds', seconds) ||
|
||||
seconds < 90 && template('minute', 1) ||
|
||||
minutes < 45 && template('minutes', minutes) ||
|
||||
minutes < 90 && template('hour', 1) ||
|
||||
hours < 24 && template('hours', hours) ||
|
||||
hours < 42 && template('day', 1) ||
|
||||
days < 30 && template('days', days) ||
|
||||
days < 45 && template('month', 1) ||
|
||||
days < 365 && template('months', days / 30) ||
|
||||
years < 1.5 && template('year', 1) ||
|
||||
template('years', years)
|
||||
) + templates.suffix;
|
||||
};
|
||||
|
||||
var elements = document.getElementsByClassName(selector);
|
||||
if (selector && elements && elements.length) {
|
||||
for (var i in elements) {
|
||||
var $el = elements[i];
|
||||
if (typeof $el === 'object') {
|
||||
$el.innerHTML = '<i class="far fa-clock"></i> ' + timer($el.getAttribute('title') || $el.getAttribute('datetime'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// update time every minute
|
||||
setTimeout(function() {
|
||||
aui_time_ago(selector);
|
||||
}, 60000);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate tooltips on the page.
|
||||
*/
|
||||
function aui_init_tooltips(){
|
||||
jQuery('[data-toggle="tooltip"]').tooltip();
|
||||
jQuery('[data-toggle="popover"]').popover();
|
||||
jQuery('[data-toggle="popover-html"]').popover({
|
||||
html: true
|
||||
});
|
||||
|
||||
// fix popover container compatibility
|
||||
jQuery('[data-toggle="popover"],[data-toggle="popover-html"]').on('inserted.bs.popover', function () {
|
||||
jQuery('body > .popover').wrapAll("<div class='bsui' />");
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Initiate flatpickrs on the page.
|
||||
*/
|
||||
$aui_doing_init_flatpickr = false;
|
||||
function aui_init_flatpickr(){
|
||||
if ( jQuery.isFunction(jQuery.fn.flatpickr) && !$aui_doing_init_flatpickr) {
|
||||
$aui_doing_init_flatpickr = true;
|
||||
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
|
||||
}
|
||||
$aui_doing_init_flatpickr = false;
|
||||
}
|
||||
|
||||
function aui_modal($title,$body,$footer,$dismissible,$class,$dialog_class) {
|
||||
if(!$class){$class = '';}
|
||||
if(!$dialog_class){$dialog_class = '';}
|
||||
if(!$body){$body = '<div class="text-center"><div class="spinner-border" role="status"></div></div>';}
|
||||
// remove it first
|
||||
jQuery('.aui-modal').modal('hide').modal('dispose').remove();
|
||||
jQuery('.modal-backdrop').remove();
|
||||
|
||||
var $modal = '';
|
||||
|
||||
$modal += '<div class="modal aui-modal fade shadow bsui '+$class+'" tabindex="-1">'+
|
||||
'<div class="modal-dialog modal-dialog-centered '+$dialog_class+'">'+
|
||||
'<div class="modal-content">';
|
||||
|
||||
if($title) {
|
||||
$modal += '<div class="modal-header">' +
|
||||
'<h5 class="modal-title">' + $title + '</h5>';
|
||||
|
||||
if ($dismissible) {
|
||||
$modal += '<button type="button" class="close" data-dismiss="modal" aria-label="Close">' +
|
||||
'<span aria-hidden="true">×</span>' +
|
||||
'</button>';
|
||||
}
|
||||
|
||||
$modal += '</div>';
|
||||
}
|
||||
$modal += '<div class="modal-body">'+
|
||||
$body+
|
||||
'</div>';
|
||||
|
||||
if($footer){
|
||||
$modal += '<div class="modal-footer">'+
|
||||
$footer +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
$modal +='</div>'+
|
||||
'</div>'+
|
||||
'</div>';
|
||||
|
||||
jQuery('body').append($modal);
|
||||
|
||||
jQuery('.aui-modal').modal('hide').modal({
|
||||
//backdrop: 'static'
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Show / hide fields depending on conditions.
|
||||
*/
|
||||
function aui_conditional_fields(form){
|
||||
jQuery(form).find(".aui-conditional-field").each(function () {
|
||||
|
||||
var $element_require = jQuery(this).data('element-require');
|
||||
|
||||
if ($element_require) {
|
||||
|
||||
$element_require = $element_require.replace("'", "'"); // replace single quotes
|
||||
$element_require = $element_require.replace(""", '"'); // replace double quotes
|
||||
|
||||
if (aui_check_form_condition($element_require,form)) {
|
||||
jQuery(this).removeClass('d-none');
|
||||
} else {
|
||||
jQuery(this).addClass('d-none');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Check form condition
|
||||
*/
|
||||
function aui_check_form_condition(condition,form) {
|
||||
if (form) {
|
||||
condition = condition.replace(/\(form\)/g, "('"+form+"')");
|
||||
}
|
||||
return new Function("return " + condition+";")();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function to determine if a element is on screen.
|
||||
*/
|
||||
jQuery.fn.aui_isOnScreen = function(){
|
||||
|
||||
var win = jQuery(window);
|
||||
|
||||
var viewport = {
|
||||
top : win.scrollTop(),
|
||||
left : win.scrollLeft()
|
||||
};
|
||||
viewport.right = viewport.left + win.width();
|
||||
viewport.bottom = viewport.top + win.height();
|
||||
|
||||
var bounds = this.offset();
|
||||
bounds.right = bounds.left + this.outerWidth();
|
||||
bounds.bottom = bounds.top + this.outerHeight();
|
||||
|
||||
return (!(viewport.right < bounds.left || viewport.left > bounds.right || viewport.bottom < bounds.top || viewport.top > bounds.bottom));
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Maybe show multiple carousel items if set to do so.
|
||||
*/
|
||||
function aui_carousel_maybe_show_multiple_items($carousel){
|
||||
var $items = {};
|
||||
var $item_count = 0;
|
||||
|
||||
// maybe backup
|
||||
if(!jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).append('<div class="carousel-inner-original d-none">'+jQuery($carousel).find('.carousel-inner').html()+'</div>');
|
||||
}
|
||||
|
||||
// Get the original items html
|
||||
jQuery($carousel).find('.carousel-inner-original .carousel-item').each(function () {
|
||||
$items[$item_count] = jQuery(this).html();
|
||||
$item_count++;
|
||||
});
|
||||
|
||||
// bail if no items
|
||||
if(!$item_count){return;}
|
||||
|
||||
if(jQuery(window).width() <= 576){
|
||||
// maybe restore original
|
||||
if(jQuery($carousel).find('.carousel-inner').hasClass('aui-multiple-items') && jQuery($carousel).find('.carousel-inner-original').length){
|
||||
jQuery($carousel).find('.carousel-inner').removeClass('aui-multiple-items').html(jQuery($carousel).find('.carousel-inner-original').html());
|
||||
jQuery($carousel).find(".carousel-indicators li").removeClass("d-none");
|
||||
}
|
||||
|
||||
}else{
|
||||
// new items
|
||||
var $md_count = jQuery($carousel).data('limit_show');
|
||||
var $new_items = '';
|
||||
var $new_items_count = 0;
|
||||
var $new_item_count = 0;
|
||||
var $closed = true;
|
||||
Object.keys($items).forEach(function(key,index) {
|
||||
|
||||
// close
|
||||
if(index != 0 && Number.isInteger(index/$md_count) ){
|
||||
$new_items += '</div></div>';
|
||||
$closed = true;
|
||||
}
|
||||
|
||||
// open
|
||||
if(index == 0 || Number.isInteger(index/$md_count) ){
|
||||
$active = index == 0 ? 'active' : '';
|
||||
$new_items += '<div class="carousel-item '+$active+'"><div class="row m-0">';
|
||||
$closed = false;
|
||||
$new_items_count++;
|
||||
$new_item_count = 0;
|
||||
}
|
||||
|
||||
// content
|
||||
$new_items += '<div class="col pr-1 pl-0">'+$items[index]+'</div>';
|
||||
$new_item_count++;
|
||||
|
||||
|
||||
});
|
||||
|
||||
// close if not closed in the loop
|
||||
if(!$closed){
|
||||
// check for spares
|
||||
if($md_count-$new_item_count > 0){
|
||||
$placeholder_count = $md_count-$new_item_count;
|
||||
while($placeholder_count > 0){
|
||||
$new_items += '<div class="col pr-1 pl-0"></div>';
|
||||
$placeholder_count--;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$new_items += '</div></div>';
|
||||
}
|
||||
|
||||
// insert the new items
|
||||
jQuery($carousel).find('.carousel-inner').addClass('aui-multiple-items').html($new_items);
|
||||
|
||||
// fix any lazyload images in the active slider
|
||||
jQuery($carousel).find('.carousel-item.active img').each(function () {
|
||||
// fix the srcset
|
||||
if(real_srcset = jQuery(this).attr("data-srcset")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("srcset",real_srcset);
|
||||
}
|
||||
// fix the src
|
||||
if(real_src = jQuery(this).attr("data-src")){
|
||||
if(!jQuery(this).attr("srcset")) jQuery(this).attr("src",real_src);
|
||||
}
|
||||
});
|
||||
|
||||
// maybe fix carousel indicators
|
||||
$hide_count = $new_items_count-1;
|
||||
jQuery($carousel).find(".carousel-indicators li:gt("+$hide_count+")").addClass("d-none");
|
||||
}
|
||||
|
||||
// trigger a global action to say we have
|
||||
jQuery( window ).trigger( "aui_carousel_multiple" );
|
||||
}
|
||||
|
||||
/**
|
||||
* Init Multiple item carousels.
|
||||
*/
|
||||
function aui_init_carousel_multiple_items(){
|
||||
jQuery(window).resize(function(){
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
});
|
||||
|
||||
// run now
|
||||
jQuery('.carousel-multiple-items').each(function () {
|
||||
aui_carousel_maybe_show_multiple_items(this);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Allow navs to use multiple sub menus.
|
||||
*/
|
||||
function init_nav_sub_menus(){
|
||||
|
||||
jQuery('.navbar-multi-sub-menus').each(function(i, obj) {
|
||||
// Check if already initialized, if so continue.
|
||||
if(jQuery(this).hasClass("has-sub-sub-menus")){return true;}
|
||||
|
||||
// Make sure its always expanded
|
||||
jQuery(this).addClass('has-sub-sub-menus');
|
||||
|
||||
jQuery(this).find( '.dropdown-menu a.dropdown-toggle' ).on( 'click', function ( e ) {
|
||||
var $el = jQuery( this );
|
||||
$el.toggleClass('active-dropdown');
|
||||
var $parent = jQuery( this ).offsetParent( ".dropdown-menu" );
|
||||
if ( !jQuery( this ).next().hasClass( 'show' ) ) {
|
||||
jQuery( this ).parents( '.dropdown-menu' ).first().find( '.show' ).removeClass( "show" );
|
||||
}
|
||||
var $subMenu = jQuery( this ).next( ".dropdown-menu" );
|
||||
$subMenu.toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parent( "li" ).toggleClass( 'show' );
|
||||
|
||||
jQuery( this ).parents( 'li.nav-item.dropdown.show' ).on( 'hidden.bs.dropdown', function ( e ) {
|
||||
jQuery( '.dropdown-menu .show' ).removeClass( "show" );
|
||||
$el.removeClass('active-dropdown');
|
||||
} );
|
||||
|
||||
if ( !$parent.parent().hasClass( 'navbar-nav' ) ) {
|
||||
$el.next().addClass('position-relative border-top border-bottom');
|
||||
}
|
||||
|
||||
return false;
|
||||
} );
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Initiate all AUI JS.
|
||||
*/
|
||||
function aui_init(){
|
||||
// nav menu submenus
|
||||
init_nav_sub_menus();
|
||||
|
||||
// init tooltips
|
||||
aui_init_tooltips();
|
||||
|
||||
// init select2
|
||||
aui_init_select2();
|
||||
|
||||
// init flatpickr
|
||||
aui_init_flatpickr();
|
||||
|
||||
// init Greedy nav
|
||||
aui_init_greedy_nav();
|
||||
|
||||
// Set times to time ago
|
||||
aui_time_ago('timeago');
|
||||
|
||||
// init multiple item carousels
|
||||
aui_init_carousel_multiple_items();
|
||||
}
|
||||
|
||||
// run on window loaded
|
||||
jQuery(window).on("load",function() {
|
||||
aui_init();
|
||||
});
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<link rel="https://api.w.org/" href="../wp-json/index.html"><link rel="alternate" type="application/json" href="../wp-json/wp/v2/pages/111/index.html"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="../../xmlrpc.php">
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="../../wp-includes/wlwmanifest.xml">
|
||||
<meta name="generator" content="WordPress 5.7.2">
|
||||
<link rel="canonical" href="index.html">
|
||||
<link rel="shortlink" href="../../index.html">
|
||||
<link rel="alternate" type="application/json+oembed" href="../wp-json/oembed/1.0/embed/index.html">
|
||||
<link rel="alternate" type="text/xml+oembed" href="../wp-json/oembed/1.0/embed/index.html">
|
||||
<style type="text/css">img#wpstats{display:none}</style>
|
||||
<style type="text/css">
|
||||
/* Colors */
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="page-template-default page page-id-111 no-sidebar footer-0 has-avatars">
|
||||
<div id="page" class="hfeed site">
|
||||
<a class="skip-link screen-reader-text" href="#content/index.html">Springe zum Inhalt</a>
|
||||
|
||||
<header id="masthead" class="site-header">
|
||||
|
||||
<div class="site-branding">
|
||||
<div class="site-title"><a href="../../index.html" rel="home">Ak21</a></div>
|
||||
<div class="site-description">Jahrbuch der JHS</div>
|
||||
</div><!-- .site-branding -->
|
||||
|
||||
<nav id="site-navigation" class="main-navigation">
|
||||
<button class="menu-toggle"><span class="menu-text">Menü</span></button>
|
||||
<div class="menu-normal-container"><ul id="menu-normal" class="menu"><li id="menu-item-207" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-207"><a href="../steckbriefe/index.html">Steckbriefe</a></li>
|
||||
<li id="menu-item-208" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-111 current_page_item menu-item-208"><a href="index.html" aria-current="page">Umfrage Ergebnisse</a></li>
|
||||
<li id="menu-item-213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-213"><a href="../gaestebuch/index.html">Gästebuch</a></li>
|
||||
</ul></div> <form role="search" method="get" class="search-form" action="../../index.html">
|
||||
<label>
|
||||
<span class="screen-reader-text">Suche nach:</span>
|
||||
<input type="search" class="search-field" placeholder="Suche …" value="" name="s">
|
||||
</label>
|
||||
<input type="submit" class="search-submit" value="Suche">
|
||||
</form> </nav><!-- #site-navigation -->
|
||||
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="content" class="site-content">
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main">
|
||||
|
||||
|
||||
|
||||
<article id="post-111" class="post-111 page type-page status-publish hentry">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title">Umfrage Ergebnisse</h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
|
||||
<h2 class="has-text-align-center">Tabelle: Beliebteste/r Lehrer/in:</h2>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-table"><table><tbody><tr><td class="has-text-align-center" data-align="center"><strong>Name</strong></td><td class="has-text-align-center" data-align="center"><strong>Stimmen</strong></td></tr><tr><td class="has-text-align-center" data-align="center">Herr Zalewski</td><td class="has-text-align-center" data-align="center">17</td></tr><tr><td class="has-text-align-center" data-align="center">Herr Brandt</td><td class="has-text-align-center" data-align="center">11</td></tr><tr><td class="has-text-align-center" data-align="center">Herr Reinermann</td><td class="has-text-align-center" data-align="center">10</td></tr><tr><td class="has-text-align-center" data-align="center">Herr Sellnow</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Herr Zander</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Frau Bonn</td><td class="has-text-align-center" data-align="center">2</td></tr><tr><td class="has-text-align-center" data-align="center">Frau Eissing</td><td class="has-text-align-center" data-align="center">2</td></tr><tr><td class="has-text-align-center" data-align="center">Frau Hanke</td><td class="has-text-align-center" data-align="center">2</td></tr><tr><td class="has-text-align-center" data-align="center">Herr Elter</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Frau Such</td><td class="has-text-align-center" data-align="center">1</td></tr></tbody></table></figure>
|
||||
|
||||
|
||||
|
||||
<h2 class="has-text-align-center">Tabelle: Mr./Mrs. Unpünktlich</h2>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-table"><table><tbody><tr><td class="has-text-align-center" data-align="center"><strong>Name</strong></td><td class="has-text-align-center" data-align="center"><strong>Stimmen</strong></td></tr><tr><td class="has-text-align-center" data-align="center">Imran</td><td class="has-text-align-center" data-align="center">13</td></tr><tr><td class="has-text-align-center" data-align="center">Rubina</td><td class="has-text-align-center" data-align="center">12</td></tr><tr><td class="has-text-align-center" data-align="center">Jon</td><td class="has-text-align-center" data-align="center">9</td></tr><tr><td class="has-text-align-center" data-align="center">Rashed</td><td class="has-text-align-center" data-align="center">8</td></tr><tr><td class="has-text-align-center" data-align="center">Jan</td><td class="has-text-align-center" data-align="center">6</td></tr><tr><td class="has-text-align-center" data-align="center">Luis Lange</td><td class="has-text-align-center" data-align="center">5</td></tr><tr><td class="has-text-align-center" data-align="center">Linus</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Neck</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Amelie</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Justus</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Laura</td><td class="has-text-align-center" data-align="center">2</td></tr><tr><td class="has-text-align-center" data-align="center">Jerome</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Georg</td><td class="has-text-align-center" data-align="center">1</td></tr></tbody></table><figcaption>*Bei der Auswertung wurden auch mehrere Antworten gewertet. </figcaption></figure>
|
||||
|
||||
|
||||
|
||||
<h2 class="has-text-align-center">Tabelle: Klassen oder Stufen Clown:</h2>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-table"><table><tbody><tr><td class="has-text-align-center" data-align="center"><strong>Name</strong></td><td class="has-text-align-center" data-align="center"><strong>Stimmen</strong></td></tr><tr><td class="has-text-align-center" data-align="center">Leon Nimz</td><td class="has-text-align-center" data-align="center">14</td></tr><tr><td class="has-text-align-center" data-align="center">Anis</td><td class="has-text-align-center" data-align="center">12</td></tr><tr><td class="has-text-align-center" data-align="center">Luis l.</td><td class="has-text-align-center" data-align="center">4</td></tr><tr><td class="has-text-align-center" data-align="center">Joey-Li</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Jon</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Jolyn F</td><td class="has-text-align-center" data-align="center">3</td></tr><tr><td class="has-text-align-center" data-align="center">Malte</td><td class="has-text-align-center" data-align="center">2</td></tr><tr><td class="has-text-align-center" data-align="center">Imran</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Nick</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Louis H</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Justus</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Justin</td><td class="has-text-align-center" data-align="center">1</td></tr><tr><td class="has-text-align-center" data-align="center">Jerome N</td><td class="has-text-align-center" data-align="center">1</td></tr></tbody></table></figure>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-## -->
|
||||
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
|
||||
<footer id="colophon" class="site-footer">
|
||||
|
||||
|
||||
<div class="site-bottom">
|
||||
|
||||
<div class="site-info">
|
||||
<div class="site-copyright">
|
||||
© 2021 <a href="../../index.html" rel="home">Ak21</a>
|
||||
</div><!-- .site-copyright -->
|
||||
<div class="site-credit">
|
||||
Powered by <a href="https://de.wordpress.org/">WordPress</a> <span class="site-credit-sep"> | </span>
|
||||
Theme: <a href="http://themegraphy.com/wordpress-themes/graphy/">Graphy</a> von Themegraphy </div><!-- .site-credit -->
|
||||
</div><!-- .site-info -->
|
||||
|
||||
</div><!-- .site-bottom -->
|
||||
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<style>html{font-size:16px;}</style><script type="text/javascript" id="ce4wp_form_submit-js-extra">
|
||||
/* <![CDATA[ */
|
||||
var ce4wp_form_submit_data = {"siteUrl":"https:\/\/ak-21.de","url":"https:\/\/ak-21.de\/wp-admin\/admin-ajax.php","nonce":"9cb75718f3","listNonce":"3f4360f3ac"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/creative-mail-by-constant-contact/assets/js/block/submit.js" id="ce4wp_form_submit-js"></script>
|
||||
<script type="text/javascript" src="../../p/jetpack/9.8.1/_inc/build/photon/photon.min.js" id="jetpack-photon-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/jquery.fitvids.js" id="fitvids-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/skip-link-focus-fix.js" id="graphy-skip-link-focus-fix-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/navigation.js" id="graphy-navigation-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/doubletaptogo.min.js" id="double-tap-to-go-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/themes/graphy/js/functions.js" id="graphy-functions-js"></script>
|
||||
<script type="text/javascript" src="../../wp-content/plugins/wordpress-countdown-widget/js/jquery.countdown.min.js" id="countdown-js"></script>
|
||||
<script type="text/javascript" src="../../c/5.7.2/wp-includes/js/wp-embed.min.js" id="wp-embed-js"></script>
|
||||
<script src="../../e-202125.js" defer=""></script>
|
||||
<script>
|
||||
_stq = window._stq || [];
|
||||
_stq.push([ 'view', {v:'ext',j:'1:9.8.1',blog:'194733867',post:'111',tz:'0',srv:'ak-21.de'} ]);
|
||||
_stq.push([ 'clickTrackerInit', '194733867', '111' ]);
|
||||
</script>
|
||||
|
||||
<script>(function($) {
|
||||
$.countdown.regional['custom'] = {
|
||||
labels: [
|
||||
'Jahre',
|
||||
'Monate',
|
||||
'Wochen',
|
||||
'Tage',
|
||||
'Stunden',
|
||||
'Minuten',
|
||||
'Sekunden'
|
||||
],
|
||||
labels1: [
|
||||
'Jahr',
|
||||
'Monat',
|
||||
'Woche',
|
||||
'Tag',
|
||||
'Stunde',
|
||||
'Minute',
|
||||
'Sekunde'
|
||||
],
|
||||
compactLabels: ['y', 'a', 'h', 'g'],
|
||||
whichLabels: null,
|
||||
timeSeparator: ':',
|
||||
isRTL: false
|
||||
};
|
||||
$.countdown.setDefaults($.countdown.regional['custom']);
|
||||
})(jQuery);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1009 B |
@@ -0,0 +1,467 @@
|
||||
|
||||
/*
|
||||
* CSS for the Frontend of Gwolle Guestbook plugin.
|
||||
*/
|
||||
|
||||
|
||||
.gwolle-gb {
|
||||
clear: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.gwolle-gb .gwolle-gb-hide {
|
||||
display: none;
|
||||
}
|
||||
.gwolle-gb .gwolle-gb-invisible {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* Write button */
|
||||
|
||||
.gwolle-gb-write-button {
|
||||
margin: 20px 0 10px;
|
||||
}
|
||||
.gwolle-gb-write-button input.button {
|
||||
float: none; /* To avoid problems with too invasive themes. */
|
||||
}
|
||||
|
||||
/* Write section */
|
||||
|
||||
.gwolle-gb form.gwolle-gb-write {
|
||||
position: relative;
|
||||
margin-top: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
html body div.gwolle-gb form.gwolle-gb-write button.gb-notice-dismiss {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
border: none;
|
||||
border-radius: 2px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-color: #888;
|
||||
display: inline-block;
|
||||
speak: none;
|
||||
line-height: 16px;
|
||||
height: 16px;
|
||||
width: 14px;
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.gwolle-gb-float .label,
|
||||
.gwolle-gb-float .input {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Text meant only for screen readers in broken themes. */
|
||||
.gwolle-gb .screen-reader-text {
|
||||
border: 0;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute !important;
|
||||
width: 1px;
|
||||
word-wrap: normal !important;
|
||||
}
|
||||
|
||||
/* Overwrite shizzle from fancy themes */
|
||||
body .gwolle_gb_content a,
|
||||
body .gwolle-gb-content a {
|
||||
box-shadow: none !important; /* Fuck Twenty Fifteen, Twenty Sixteen and Twenty Seventeen */
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* Submit AJAX icon */
|
||||
.gwolle-gb .gwolle_gb_submit_ajax_icon,
|
||||
.gwolle-gb .gwolle-gb-submit-ajax-icon,
|
||||
.gwolle-gb .gwolle_gb_addon_preview_ajax_icon,
|
||||
.gwolle-gb .gwolle-gb-addon-preview-ajax-icon {
|
||||
display: none;
|
||||
background-image: url("../images/loading.gif");
|
||||
background-position: 4px 4px;
|
||||
background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
padding: 13px 20px 13px 20px;
|
||||
}
|
||||
|
||||
/* Messages / Notices */
|
||||
|
||||
.gwolle-gb .gwolle_gb_messages,
|
||||
.gwolle-gb .gwolle-gb-messages {
|
||||
border-left: 4px solid #7ad03a;
|
||||
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
|
||||
padding: 1px 12px;
|
||||
margin: 5px 0 15px;
|
||||
}
|
||||
.gwolle-gb .gwolle_gb_messages.error,
|
||||
.gwolle-gb .gwolle-gb-messages.error {
|
||||
border-left: 4px solid #dd3d36;
|
||||
}
|
||||
|
||||
.gwolle-gb .error p, div.updated p {
|
||||
margin: 0.5em 0;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.gwolle-gb form.gwolle-gb-write div.input.error,
|
||||
.gwolle-gb form.gwolle-gb-write input.error,
|
||||
.gwolle-gb form.gwolle-gb-write textarea.error {
|
||||
border: 1px solid #dd3d36;
|
||||
}
|
||||
.gwolle-gb form.gwolle-gb-write input[type="checkbox"].error {
|
||||
box-shadow: 1px 1px 0px 0px rgba(221,61,54,1);
|
||||
}
|
||||
|
||||
.gwolle-gb div.label,
|
||||
.gwolle-gb div.input {
|
||||
vertical-align: top;
|
||||
width: 80%;
|
||||
}
|
||||
.gwolle-gb .gwolle-gb-float div.label {
|
||||
width: 35%;
|
||||
}
|
||||
.gwolle-gb .gwolle-gb-float div.input {
|
||||
width: 50%;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
.gwolle-gb div.input input[type="text"],
|
||||
.gwolle-gb div.input input[type="email"],
|
||||
.gwolle-gb div.input input[type="url"],
|
||||
.gwolle-gb div.input textarea,
|
||||
.gwolle-gb div.input select {
|
||||
width: 99%;
|
||||
}
|
||||
.gwolle-gb div.input textarea {
|
||||
height: 150px;
|
||||
}
|
||||
.gwolle-gb .clearBoth {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
/* Page Navigation */
|
||||
|
||||
.gwolle-gb .page-navigation {
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
.gwolle-gb .page-navigation a,
|
||||
.gwolle-gb .page-navigation span {
|
||||
display: inline-block;
|
||||
padding: 0px 6px;
|
||||
margin-left: 0;
|
||||
color: #555;
|
||||
background-color: #fff;
|
||||
border: 1px solid #efefef;
|
||||
text-decoration: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Current page */
|
||||
.gwolle-gb .page-navigation a:hover,
|
||||
.gwolle-gb .page-navigation span.current {
|
||||
background: #eee;
|
||||
color: #000;
|
||||
opacity: 0.8;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
.gwolle-gb .page-navigation span.dots {
|
||||
padding: 0px 3px;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* Border-radius for whole pagination thing. */
|
||||
.gwolle-gb .page-navigation a:nth-child(2),
|
||||
.gwolle-gb .page-navigation span:nth-child(2) {
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
.gwolle-gb .page-navigation a:last-child,
|
||||
.gwolle-gb .page-navigation span:last-child {
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
|
||||
/* Read section */
|
||||
|
||||
.gwolle-gb .gwolle-gb-read {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.gwolle-gb .admin-entry {
|
||||
color: #333;
|
||||
background-color: #e6e6e6;
|
||||
background-repeat: repeat-x;
|
||||
background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
|
||||
background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
|
||||
background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
|
||||
background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
|
||||
background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
|
||||
padding-left: 5px;
|
||||
}
|
||||
.gwolle-gb .admin-entry a {
|
||||
color: #666;
|
||||
}
|
||||
.gwolle-gb .gb-entry {
|
||||
position: relative;
|
||||
border-top: 1px #ddd solid;
|
||||
padding: 10px 0;
|
||||
margin: 0;
|
||||
clear: left;
|
||||
}
|
||||
.gwolle-gb .gwolle-gb-first {
|
||||
border-width: 0px;
|
||||
}
|
||||
.gwolle-gb .gb-entry-count_0 {
|
||||
border-bottom: 1px #ddd solid; /* Ajax added entry */
|
||||
}
|
||||
|
||||
.gwolle-gb .gb-entry .gb-author-info,
|
||||
.gwolle-gb .gb-entry .gb-entry-content {
|
||||
display: block;
|
||||
}
|
||||
.gwolle-gb .gb-entry .gb-author-info .gb-author-avatar {
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
.gwolle-gb .gb-entry .gb-author-info .gb-author-name {
|
||||
padding-left: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.gwolle-gb .gb-entry .gb-entry-content {
|
||||
padding-left: 10px;
|
||||
}
|
||||
.gwolle-gb .gb-entry .gb-entry-content img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.gwolle-gb .gb-entry .gb-highlight {
|
||||
background-color: #ddff00;
|
||||
}
|
||||
|
||||
|
||||
/* Metabox */
|
||||
|
||||
div.gb-metabox-handle {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 10px;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
}
|
||||
div.gb-metabox-handle:focus {
|
||||
outline-color: currentColor;
|
||||
outline-style: solid;
|
||||
outline-width: thin;
|
||||
}
|
||||
|
||||
div.gb-metabox {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 30px;
|
||||
width: 200px;
|
||||
box-sizing: border-box;
|
||||
z-index: 10;
|
||||
}
|
||||
.gwolle-gb .gb-entry-count_1 div.gb-metabox {
|
||||
border-top: 1px #ddd solid;
|
||||
}
|
||||
div.gb-metabox-line {
|
||||
width: 100%;
|
||||
padding: 2px 5px;
|
||||
border-right: 1px #ddd solid;
|
||||
border-bottom: 1px #ddd solid;
|
||||
border-left: 1px #ddd solid;
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
div.gb-metabox-line a {
|
||||
text-decoration: none;
|
||||
box-shadow: none;
|
||||
color: #222;
|
||||
}
|
||||
div.gb-metabox-line.gb-metabox-line-ajax {
|
||||
display: none;
|
||||
background-image: url("../images/loading.gif");
|
||||
background-position: 155px 2px;
|
||||
background-repeat: no-repeat;
|
||||
min-height: 34px;
|
||||
}
|
||||
div.gb-metabox-line.gb-social-media-share {
|
||||
padding: 0;
|
||||
}
|
||||
div.gb-metabox-line.gb-social-media-share a {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Admin Reply */
|
||||
|
||||
.gwolle-gb .gb-entry-admin_reply,
|
||||
.gwolle-gb .gb-entry-admin-reply {
|
||||
margin: 10px 0 0 40px;
|
||||
padding: 4px 10px 4px 10px;
|
||||
border-left: 1px solid #ddd;
|
||||
}
|
||||
|
||||
|
||||
/* Infinite Scroll */
|
||||
|
||||
.gwolle-gb .gwolle_gb_load_message,
|
||||
.gwolle-gb .gwolle-gb-load-message {
|
||||
display: none;
|
||||
background-color: #eee;
|
||||
background-image: url("../images/loading.gif");
|
||||
background-position: 10px 13px;
|
||||
background-repeat: no-repeat;
|
||||
border: 1px solid #333;
|
||||
border-radius: 5px;
|
||||
bottom: -72px;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
margin-left: 10px;
|
||||
padding: 15px 20px 15px 52px;
|
||||
position: absolute;
|
||||
z-index: 5;
|
||||
}
|
||||
.gwolle-gb .gwolle_gb_end_message,
|
||||
.gwolle-gb .gwolle-gb-end-message {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* Widget */
|
||||
|
||||
li.gwolle_gb_widget,
|
||||
li.gwolle-gb-widget {
|
||||
border-bottom: 1px #ddd solid;
|
||||
padding: 3px 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
p.gwolle_gb_link,
|
||||
p.gwolle-gb-link {
|
||||
padding: 3px 0;
|
||||
}
|
||||
|
||||
|
||||
/* Widget Slider */
|
||||
|
||||
ul.gwolle_gb_widget_slider,
|
||||
ul.gwolle-gb-widget-slider {
|
||||
margin-left: 0;
|
||||
}
|
||||
ul.gwolle_gb_widget_slider .sss,
|
||||
ul.gwolle-gb-widget-slider .sss {
|
||||
height: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
ul.gwolle_gb_widget_slider li:first-child,
|
||||
ul.gwolle-gb-widget-slider li:first-child,
|
||||
li.gwolle_gb_widget.ssslide:first-child,
|
||||
li.gwolle-gb-widget.ssslide:first-child {
|
||||
display: inline-block;
|
||||
}
|
||||
ul.gwolle_gb_widget_slider li,
|
||||
ul.gwolle-gb-widget-slider li {
|
||||
display: none;
|
||||
border-bottom: 0px solid #ddd;
|
||||
}
|
||||
|
||||
li.gwolle_gb_widget.ssslide,
|
||||
li.gwolle-gb-widget.ssslide {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
|
||||
#wpadminbar #wp-admin-bar-gwolle-gb .ab-icon::before {
|
||||
content: "";
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
|
||||
/* Form inside a widget */
|
||||
.widget .gwolle-gb-float div.label,
|
||||
.widget .gwolle-gb-float div.input,
|
||||
.widget-area .gwolle-gb-float div.label,
|
||||
.widget-area .gwolle-gb-float div.input {
|
||||
float: none;
|
||||
}
|
||||
.widget .gwolle-gb div.label,
|
||||
.widget-area .gwolle-gb div.label {
|
||||
width: 100%;
|
||||
}
|
||||
.widget .gwolle-gb div.input,
|
||||
.widget-area .gwolle-gb div.input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* Responsive Design */
|
||||
|
||||
@media only screen and (max-width: 820px) {
|
||||
.gwolle-gb-float div.label,
|
||||
.gwolle-gb-float div.input {
|
||||
float: none;
|
||||
}
|
||||
.gwolle-gb .gwolle-gb-float div.label,
|
||||
.gwolle-gb .gwolle-gb-float div.input,
|
||||
.gwolle-gb div.label,
|
||||
.gwolle-gb div.input {
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 620px) {
|
||||
.gwolle-gb-float div.label,
|
||||
.gwolle-gb-float div.input {
|
||||
float: none;
|
||||
}
|
||||
.gwolle-gb .gwolle-gb-float div.label,
|
||||
.gwolle-gb .gwolle-gb-float div.input,
|
||||
.gwolle-gb div.label,
|
||||
.gwolle-gb div.input {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Add-On */
|
||||
|
||||
div.gwolle-gb-starrating-result {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 30px;
|
||||
width: 200px;
|
||||
padding: 3px 6px;
|
||||
box-sizing: border-box;
|
||||
z-index: 5;
|
||||
}
|
||||
div.gb-social-media-share img {
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -0,0 +1,381 @@
|
||||
|
||||
/*
|
||||
Copyright 2014 - 2021 Marcel Pol (email: marcel@timelord.nl)
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* JavaScript for Gwolle Guestbook Frontend.
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Event for clicking the button, and getting the form visible.
|
||||
*/
|
||||
jQuery(document).ready(function($) {
|
||||
jQuery( "div.gwolle-gb-write-button input" ).on( 'click', function() {
|
||||
var main_div = jQuery( this ).closest( 'div.gwolle-gb' );
|
||||
jQuery("div.gwolle-gb-write-button", main_div).slideUp(1000);
|
||||
jQuery("form.gwolle-gb-write", main_div).slideDown(1000);
|
||||
return false;
|
||||
});
|
||||
|
||||
// And close it again.
|
||||
jQuery( "button.gb-notice-dismiss" ).on( 'click', function() {
|
||||
var main_div = jQuery( this ).closest( 'div.gwolle-gb' );
|
||||
jQuery("div.gwolle-gb-write-button", main_div).slideDown(1000);
|
||||
jQuery("form.gwolle-gb-write", main_div).slideUp(1000);
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
* Event for clicking the readmore, and getting the full content of that entry visible.
|
||||
*/
|
||||
jQuery(document).ready(function($) {
|
||||
gwolle_gb_readmore();
|
||||
gwolle_gb_scroll_callback.add( gwolle_gb_readmore );
|
||||
gwolle_gb_ajax_callback.add( gwolle_gb_readmore );
|
||||
});
|
||||
function gwolle_gb_readmore() {
|
||||
jQuery(".gb-entry-content .gwolle-gb-readmore").off('click');
|
||||
jQuery(".gb-entry-content .gwolle-gb-readmore").on('click', function() {
|
||||
var content_div = jQuery(this).closest( '.gb-entry-content' );
|
||||
jQuery('.gb-entry-excerpt', content_div).css( 'display', 'none' );
|
||||
jQuery('.gb-entry-full-content', content_div).slideDown(500);
|
||||
return false;
|
||||
});
|
||||
|
||||
jQuery(".gb-entry-admin_reply .gwolle-gb-readmore").off('click');
|
||||
jQuery(".gb-entry-admin_reply .gwolle-gb-readmore").on('click', function() {
|
||||
var content_div = jQuery(this).closest( '.gb-entry-admin_reply' );
|
||||
jQuery('.gb-admin_reply-excerpt', content_div).css( 'display', 'none' );
|
||||
jQuery('.gb-admin_reply-full-content', content_div).slideDown(500);
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Event for the metabox, toggle on and off.
|
||||
*/
|
||||
jQuery(document).ready(function($) {
|
||||
gwolle_gb_metabox_handle();
|
||||
gwolle_gb_scroll_callback.add( gwolle_gb_metabox_handle );
|
||||
gwolle_gb_ajax_callback.add( gwolle_gb_metabox_handle );
|
||||
});
|
||||
function gwolle_gb_metabox_handle() {
|
||||
jQuery('div.gb-metabox-handle').off('click');
|
||||
jQuery('div.gb-metabox-handle').on('click', function() {
|
||||
var entry_div = jQuery(this).closest('div.gb-entry');
|
||||
jQuery('div.gb-metabox', entry_div).fadeToggle( 'fast', 'linear' );
|
||||
return false;
|
||||
});
|
||||
jQuery("div.gb-metabox-handle").on( 'keypress', function(e) {
|
||||
if (e.keyCode == 13) { // Enter key.
|
||||
var entry_div = jQuery(this).closest('div.gb-entry');
|
||||
jQuery('div.gb-metabox', entry_div).fadeToggle( 'fast', 'linear' );
|
||||
return false;
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}
|
||||
jQuery(document).ready(function($) {
|
||||
jQuery('body').on('click', function( el ) {
|
||||
jQuery('div.gb-metabox').fadeOut( 'fast', 'linear' );
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
* Event for Infinite Scroll. Get more pages when you are at the bottom.
|
||||
* This function does not support multiple lists on one page.
|
||||
*/
|
||||
var gwolle_gb_scroll_on = true; // The end has not been reached yet. We still get entries back.
|
||||
var gwolle_gb_scroll_busy = false; // Handle async well. Only one request at a time.
|
||||
var gwolle_gb_scroll_callback = jQuery.Callbacks(); // Callback function to be fired after AJAX request.
|
||||
|
||||
jQuery(document).ready(function($) {
|
||||
if ( jQuery( ".gwolle-gb-read" ).hasClass( 'gwolle-gb-infinite' ) ) {
|
||||
var gwolle_gb_scroll_count = 2; // We already have page 1 listed.
|
||||
|
||||
var gwolle_gb_load_message = '<div class="gb-entry gwolle_gb_load_message">' + gwolle_gb_frontend_script.load_message + '</div>' ;
|
||||
jQuery( ".gwolle-gb-read" ).append( gwolle_gb_load_message );
|
||||
|
||||
jQuery(window).on('scroll', function() {
|
||||
// have 10px diff for sensitivity.
|
||||
if ( ( jQuery(window).scrollTop() > jQuery(document).height() - jQuery(window).height() - 10 ) && gwolle_gb_scroll_on == true && gwolle_gb_scroll_busy == false) {
|
||||
gwolle_gb_scroll_busy = true;
|
||||
gwolle_gb_load_page(gwolle_gb_scroll_count);
|
||||
gwolle_gb_scroll_count++;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function gwolle_gb_load_page( page ) {
|
||||
|
||||
jQuery('.gwolle_gb_load_message').toggle();
|
||||
|
||||
var gwolle_gb_end_message = '<div class="gb-entry gwolle_gb_end_message">' + gwolle_gb_frontend_script.end_message + '</div>' ;
|
||||
|
||||
var data = {
|
||||
action: 'gwolle_gb_infinite_scroll',
|
||||
pageNum: page,
|
||||
permalink: window.location.href,
|
||||
book_id: jQuery( ".gwolle-gb-read" ).attr( "data-book_id" )
|
||||
};
|
||||
|
||||
jQuery.post( gwolle_gb_frontend_script.ajax_url, data, function(response) {
|
||||
|
||||
jQuery('.gwolle_gb_load_message').toggle();
|
||||
if ( response == 'false' ) {
|
||||
jQuery( ".gwolle-gb-read" ).append( gwolle_gb_end_message );
|
||||
gwolle_gb_scroll_on = false;
|
||||
} else {
|
||||
jQuery( ".gwolle-gb-read" ).append( response );
|
||||
}
|
||||
|
||||
/*
|
||||
* Add callback for after infinite scroll event. Used for metabox-handle for new entries.
|
||||
*
|
||||
* @since 2.3.0
|
||||
*
|
||||
* Example code for using the callback:
|
||||
*
|
||||
* jQuery(document).ready(function($) {
|
||||
* gwolle_gb_scroll_callback.add( my_callback_function );
|
||||
* });
|
||||
*
|
||||
* function my_callback_function() {
|
||||
* console.log('This is the callback');
|
||||
* return false;
|
||||
* }
|
||||
*
|
||||
*/
|
||||
gwolle_gb_scroll_callback.fire();
|
||||
|
||||
gwolle_gb_scroll_busy = false;
|
||||
|
||||
});
|
||||
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
* Mangle data for the honeypot.
|
||||
*/
|
||||
jQuery(document).ready(function($) {
|
||||
jQuery( 'form.gwolle-gb-write' ).each( function( index, form ) {
|
||||
var honeypot = gwolle_gb_frontend_script.honeypot;
|
||||
var honeypot2 = gwolle_gb_frontend_script.honeypot2;
|
||||
var val = jQuery( 'input.' + honeypot, form ).val();
|
||||
if ( val > 0 ) {
|
||||
jQuery( 'input.' + honeypot2, form ).val( val );
|
||||
jQuery( 'input.' + honeypot, form ).val( '' );
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
* Mangle data for the form timeout.
|
||||
*/
|
||||
jQuery(document).ready(function($) {
|
||||
jQuery( 'form.gwolle-gb-write' ).each( function( index, form ) {
|
||||
var timeout = gwolle_gb_frontend_script.timeout;
|
||||
var timeout2 = gwolle_gb_frontend_script.timeout2;
|
||||
|
||||
var timer = new Number( jQuery( 'input.' + timeout, form ).val() );
|
||||
var timer2 = new Number( jQuery( 'input.' + timeout2, form ).val() );
|
||||
|
||||
var timer = timer - 1;
|
||||
var timer2 = timer2 + 1;
|
||||
|
||||
jQuery( 'input.' + timeout, form ).val( timer );
|
||||
jQuery( 'input.' + timeout2, form ).val( timer2 );
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
* AJAX Submit for Gwolle Guestbook Frontend.
|
||||
*/
|
||||
var gwolle_gb_ajax_callback = jQuery.Callbacks(); // Callback function to be fired after AJAX request.
|
||||
// Use an object, arrays are only indexed by integers. This var is kept for compatibility with add-on 1.0.0 till 1.1.1.
|
||||
var gwolle_gb_ajax_data = {
|
||||
permalink: window.location.href,
|
||||
action: 'gwolle_gb_form_ajax'
|
||||
};
|
||||
|
||||
jQuery(document).ready(function($) {
|
||||
jQuery( '.gwolle_gb_form_ajax input.gwolle_gb_submit' ).on( 'click', function( submit_button ) {
|
||||
var main_div = jQuery( this ).closest( 'div.gwolle-gb' );
|
||||
jQuery( '.gwolle_gb_submit_ajax_icon', main_div ).css( 'display', 'inline' );
|
||||
|
||||
// Use an object, arrays are only indexed by integers.
|
||||
var gwolle_gb_ajax_data = {
|
||||
permalink: window.location.href,
|
||||
action: 'gwolle_gb_form_ajax'
|
||||
};
|
||||
|
||||
jQuery('form.gwolle-gb-write input', main_div).each(function( index, value ) {
|
||||
var val = jQuery( this ).prop('value');
|
||||
var name = jQuery( this ).attr('name');
|
||||
var type = jQuery( this ).attr('type');
|
||||
if ( type == 'checkbox' ) {
|
||||
var checked = jQuery( this, main_div ).prop('checked');
|
||||
if ( checked == true ) {
|
||||
gwolle_gb_ajax_data[name] = 'on'; // Mimick standard $_POST value.
|
||||
}
|
||||
} else if ( type == 'radio' ) {
|
||||
var checked = jQuery( this, main_div ).prop('checked');
|
||||
if ( checked == true ) {
|
||||
gwolle_gb_ajax_data[name] = val;
|
||||
}
|
||||
} else {
|
||||
gwolle_gb_ajax_data[name] = val;
|
||||
}
|
||||
});
|
||||
jQuery('form.gwolle-gb-write textarea', main_div).each(function( index, value ) {
|
||||
var val = jQuery( this ).val();
|
||||
var name = jQuery( this ).attr('name');
|
||||
gwolle_gb_ajax_data[name] = val;
|
||||
});
|
||||
jQuery( 'form.gwolle-gb-write select', main_div ).each(function( index, value ) {
|
||||
var val = jQuery( value ).val();
|
||||
var name = jQuery( value ).attr('name');
|
||||
gwolle_gb_ajax_data[name] = val;
|
||||
});
|
||||
|
||||
jQuery.post( gwolle_gb_frontend_script.ajax_url, gwolle_gb_ajax_data, function( response ) {
|
||||
|
||||
if ( gwolle_gb_is_json( response ) ) {
|
||||
data = JSON.parse( response );
|
||||
|
||||
if ( ( typeof data['saved'] == 'boolean' || typeof data['saved'] == 'number' )
|
||||
&& typeof data['gwolle_gb_messages'] == 'string'
|
||||
&& typeof data['gwolle_gb_errors'] == 'boolean'
|
||||
&& typeof data['gwolle_gb_error_fields'] == 'object' ) { // Too strict in testing?
|
||||
|
||||
var saved = data['saved'];
|
||||
var gwolle_gb_messages = data['gwolle_gb_messages'];
|
||||
var gwolle_gb_errors = data['gwolle_gb_errors'];
|
||||
var gwolle_gb_error_fields = data['gwolle_gb_error_fields'];
|
||||
|
||||
jQuery( '.gwolle_gb_form_ajax input' ).removeClass( 'error' );
|
||||
jQuery( '.gwolle_gb_form_ajax select' ).removeClass( 'error' );
|
||||
jQuery( '.gwolle_gb_form_ajax textarea' ).removeClass( 'error' );
|
||||
jQuery( '.gwolle_gb_form_ajax div.input').removeClass( 'error' );
|
||||
|
||||
// we have all the data we expect.
|
||||
if ( typeof data['saved'] == 'number' ) {
|
||||
|
||||
// Show returned messages.
|
||||
jQuery( '.gwolle_gb_messages_bottom_container', main_div ).html('');
|
||||
jQuery( '.gwolle_gb_messages_top_container', main_div ).html('<div class="gwolle_gb_messages">' + data['gwolle_gb_messages'] + '</div>');
|
||||
jQuery( '.gwolle_gb_messages', main_div ).removeClass( 'error' );
|
||||
|
||||
// Remove form from view.
|
||||
jQuery( '.gwolle-gb-write', main_div ).css( 'display', 'none' );
|
||||
jQuery( '.gwolle-gb-write-button', main_div ).css( 'display', 'block' );
|
||||
|
||||
// Prepend entry to the entry list if desired.
|
||||
if ( typeof data['entry'] == 'string' ) {
|
||||
jQuery( '.gwolle-gb-read', main_div ).prepend( data['entry'] );
|
||||
}
|
||||
|
||||
// Scroll to messages div. Add 80px to offset for themes with fixed headers.
|
||||
var offset = jQuery( '.gwolle_gb_messages_top_container' ).offset().top - 80;
|
||||
jQuery('html, body').animate({
|
||||
scrollTop: offset
|
||||
}, 200, function() {
|
||||
// Animation complete.
|
||||
});
|
||||
|
||||
// Reset content textarea.
|
||||
jQuery( 'textarea', main_div ).val('');
|
||||
|
||||
jQuery( '.gwolle_gb_submit_ajax_icon', main_div ).css( 'display', 'none' );
|
||||
|
||||
/*
|
||||
* Add callback for after AJAX request. Used for metabox-handle for new entries.
|
||||
*
|
||||
* @since 2.3.0
|
||||
*
|
||||
* Example code for using the callback:
|
||||
*
|
||||
* jQuery(document).ready(function($) {
|
||||
* gwolle_gb_ajax_callback.add( my_callback_function );
|
||||
* });
|
||||
*
|
||||
* function my_callback_function() {
|
||||
* console.log('This is the callback');
|
||||
* return false;
|
||||
* }
|
||||
*
|
||||
*/
|
||||
gwolle_gb_ajax_callback.fire();
|
||||
|
||||
} else {
|
||||
// Not saved...
|
||||
|
||||
// Show returned messages.
|
||||
jQuery( '.gwolle_gb_messages_top_container', main_div ).html('');
|
||||
jQuery( '.gwolle_gb_messages_bottom_container', main_div ).html('<div class="gwolle_gb_messages error">' + data['gwolle_gb_messages'] + '</div>');
|
||||
|
||||
// Add error class to failed input fields.
|
||||
jQuery.each( gwolle_gb_error_fields, function( index, value ) {
|
||||
jQuery( 'textarea.' + value, main_div ).addClass( 'error' );
|
||||
jQuery( 'input.' + value, main_div ).addClass( 'error' );
|
||||
var type = jQuery( 'input.' + value, main_div ).attr('type');
|
||||
if ( typeof type != 'undefined' && type == 'radio' ) {
|
||||
jQuery( 'input.' + value, main_div ).closest('div.input').addClass( 'error' );
|
||||
}
|
||||
var select = jQuery( 'select.' + value, main_div ).length;
|
||||
if ( typeof select != 'undefined' && select == 1 ) { // number of elements, which should be 1.
|
||||
jQuery( 'select.' + value, main_div ).closest('div.input').addClass( 'error' );
|
||||
}
|
||||
});
|
||||
|
||||
jQuery( '.gwolle_gb_submit_ajax_icon', main_div ).css( 'display', 'none' );
|
||||
|
||||
}
|
||||
} else if (typeof console != "undefined") {
|
||||
console.log( 'Gwolle Error: Something unexpected happened. (not the data that is expected)' );
|
||||
}
|
||||
} else {
|
||||
if (typeof console != "undefined") {
|
||||
console.log( 'Gwolle Error: Something unexpected happened. (not json data)' );
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
function gwolle_gb_is_json( string ) {
|
||||
try {
|
||||
JSON.parse( string );
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@@ -0,0 +1,419 @@
|
||||
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/**
|
||||
* 1. Change the default font family in all browsers (opinionated).
|
||||
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
* 1. Add the correct display in Edge, IE, and Firefox.
|
||||
* 2. Add the correct display in IE.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details, /* 1 */
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
main, /* 2 */
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary { /* 1 */
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in iOS 4-7.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10-.
|
||||
* 1. Add the correct display in IE.
|
||||
*/
|
||||
|
||||
template, /* 1 */
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Remove the gray background on active links in IE 10.
|
||||
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent; /* 1 */
|
||||
-webkit-text-decoration-skip: objects; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the outline on focused links when they are also active or hovered
|
||||
* in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline-width: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Firefox 39-.
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font style in Android 4.3-.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct background and color in IE 9-.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background-color: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10-.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hide the overflow in IE.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct margin in IE 8.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change font properties to `inherit` in all browsers (opinionated).
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font: inherit; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the font weight unset by the previous rule.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
||||
* controls in Android 4.
|
||||
* 2. Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
html [type="button"], /* 1 */
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Change the border, margin, and padding in all browsers (opinionated).
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10-.
|
||||
* 2. Remove the padding in IE 10-.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the text style of placeholders in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
::-webkit-input-placeholder {
|
||||
color: inherit;
|
||||
opacity: 0.54;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
After Width: | Height: | Size: 142 B |
|
After Width: | Height: | Size: 636 B |