initial version

This commit is contained in:
Peter Molnar 2019-06-05 10:26:29 +01:00
commit db02b30ddb
22 changed files with 2236 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
flickr.json

4
html5shiv-printshiv.min.js vendored Normal file
View file

@ -0,0 +1,4 @@
/**
* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
*/
!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=y.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=y.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),y.elements=c+" "+a,j(b)}function f(a){var b=x[a[v]];return b||(b={},w++,a[v]=w,x[w]=b),b}function g(a,c,d){if(c||(c=b),q)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():u.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||t.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),q)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return y.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(y,b.frag)}function j(a){a||(a=b);var d=f(a);return!y.shivCSS||p||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),q||i(a,d),a}function k(a){for(var b,c=a.getElementsByTagName("*"),e=c.length,f=RegExp("^(?:"+d().join("|")+")$","i"),g=[];e--;)b=c[e],f.test(b.nodeName)&&g.push(b.applyElement(l(b)));return g}function l(a){for(var b,c=a.attributes,d=c.length,e=a.ownerDocument.createElement(A+":"+a.nodeName);d--;)b=c[d],b.specified&&e.setAttribute(b.nodeName,b.nodeValue);return e.style.cssText=a.style.cssText,e}function m(a){for(var b,c=a.split("{"),e=c.length,f=RegExp("(^|[\\s,>+~])("+d().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),g="$1"+A+"\\:$2";e--;)b=c[e]=c[e].split("}"),b[b.length-1]=b[b.length-1].replace(f,g),c[e]=b.join("}");return c.join("{")}function n(a){for(var b=a.length;b--;)a[b].removeNode()}function o(a){function b(){clearTimeout(g._removeSheetTimer),d&&d.removeNode(!0),d=null}var d,e,g=f(a),h=a.namespaces,i=a.parentWindow;return!B||a.printShived?a:("undefined"==typeof h[A]&&h.add(A),i.attachEvent("onbeforeprint",function(){b();for(var f,g,h,i=a.styleSheets,j=[],l=i.length,n=Array(l);l--;)n[l]=i[l];for(;h=n.pop();)if(!h.disabled&&z.test(h.media)){try{f=h.imports,g=f.length}catch(o){g=0}for(l=0;g>l;l++)n.push(f[l]);try{j.push(h.cssText)}catch(o){}}j=m(j.reverse().join("")),e=k(a),d=c(a,j)}),i.attachEvent("onafterprint",function(){n(e),clearTimeout(g._removeSheetTimer),g._removeSheetTimer=setTimeout(b,500)}),a.printShived=!0,a)}var p,q,r="3.7.3",s=a.html5||{},t=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,u=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,v="_html5shiv",w=0,x={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",p="hidden"in a,q=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){p=!0,q=!0}}();var y={elements:s.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:r,shivCSS:s.shivCSS!==!1,supportsUnknownElements:q,shivMethods:s.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=y,j(b);var z=/^$|\b(?:all|print)\b/,A="html5shiv",B=!q&&function(){var c=b.documentElement;return!("undefined"==typeof b.namespaces||"undefined"==typeof b.parentWindow||"undefined"==typeof c.applyElement||"undefined"==typeof c.removeNode||"undefined"==typeof a.attachEvent)}();y.type+=" print",y.shivPrint=o,o(b),"object"==typeof module&&module.exports&&(module.exports=y)}("undefined"!=typeof window?window:this,document);

324
index.php Normal file

File diff suppressed because one or more lines are too long

2
jquery-3.4.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

8
jquery.justifiedGallery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

4
jquery.magnific-popup.min.js vendored Normal file

File diff suppressed because one or more lines are too long

102
justifiedGallery.min.css vendored Normal file
View file

@ -0,0 +1,102 @@
/*!
* justifiedGallery - v3.7.0
* http://miromannino.github.io/Justified-Gallery/
* Copyright (c) 2018 Miro Mannino
* Licensed under the MIT license.
*/
.justified-gallery {
width: 100%;
position: relative;
overflow: hidden;
}
.justified-gallery > a,
.justified-gallery > div,
.justified-gallery > figure {
position: absolute;
display: inline-block;
overflow: hidden;
/* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */
filter: "alpha(opacity=10)";
opacity: 0.1;
margin: 0;
padding: 0;
}
.justified-gallery > a > img,
.justified-gallery > div > img,
.justified-gallery > figure > img,
.justified-gallery > a > a > img,
.justified-gallery > div > a > img,
.justified-gallery > figure > a > img {
position: absolute;
top: 50%;
left: 50%;
margin: 0;
padding: 0;
border: none;
filter: "alpha(opacity=0)";
opacity: 0;
}
.justified-gallery > a > .caption,
.justified-gallery > div > .caption,
.justified-gallery > figure > .caption {
display: none;
position: absolute;
bottom: 0;
padding: 5px;
background-color: #000000;
left: 0;
right: 0;
margin: 0;
color: white;
font-size: 12px;
font-weight: 300;
font-family: sans-serif;
}
.justified-gallery > a > .caption.caption-visible,
.justified-gallery > div > .caption.caption-visible,
.justified-gallery > figure > .caption.caption-visible {
display: initial;
filter: "alpha(opacity=70)";
opacity: 0.7;
-webkit-transition: opacity 500ms ease-in;
-moz-transition: opacity 500ms ease-in;
-o-transition: opacity 500ms ease-in;
transition: opacity 500ms ease-in;
}
.justified-gallery > .entry-visible {
filter: "alpha(opacity=100)";
opacity: 1;
background: none;
}
.justified-gallery > .entry-visible > img,
.justified-gallery > .entry-visible > a > img {
filter: "alpha(opacity=100)";
opacity: 1;
-webkit-transition: opacity 500ms ease-in;
-moz-transition: opacity 500ms ease-in;
-o-transition: opacity 500ms ease-in;
transition: opacity 500ms ease-in;
}
.justified-gallery > .jg-filtered {
display: none;
}
.justified-gallery > .spinner {
position: absolute;
bottom: 0;
margin-left: -24px;
padding: 10px 0 10px 0;
left: 50%;
filter: "alpha(opacity=100)";
opacity: 1;
overflow: initial;
}
.justified-gallery > .spinner > span {
display: inline-block;
filter: "alpha(opacity=0)";
opacity: 0;
width: 8px;
height: 8px;
margin: 0 4px 0 4px;
background-color: #000;
border-radius: 6px;
}

351
magnific-popup.css Normal file
View file

@ -0,0 +1,351 @@
/* Magnific Popup CSS */
.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8; }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #CCC; }
.mfp-preloader a:hover {
color: #FFF; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
padding: 0 0 18px 10px;
color: #FFF;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
opacity: 1; }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px; }
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px; }
.mfp-arrow-right:before {
border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000; }
/* Main image in popup */
img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; }
/* The shadow behind the image */
.mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444; }
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px; }
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
/**
* Remove all paddings around the image on small screen
*/
.mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }

78
org.json Normal file
View file

@ -0,0 +1,78 @@
{
"@context": "http://schema.org",
"@type": "EducationalOrganization",
"logo": {
"@context": "http://schema.org",
"@type": "ImageObject",
"url": "https://pakuauk.com/favicon.png"
},
"url": "https://pakuauk.com/",
"name": "pakuauk.com",
"email": "info@pakuauk.com",
"contactPoint" : [
{
"@type" : "ContactPoint",
"telephone" : "+441223852904",
"contactType" : "customer service",
"areaServed" : "Cambridgeshire",
"email": "cambridge@pakuauk.com"
}
],
"address": [
{
"@type": "PostalAddress",
"name": "Hills Road Sixth Form College",
"postalCode": "CB2 8PE",
"addressLocality": "Cambridge",
"addressRegion": "Cambridgeshire",
"streetAddress": "Hills Rd",
"addressCountry": "GB",
"url": "https://goo.gl/maps/r2SvugeKpDw",
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"opens": "19:00:00",
"closes": "21:00:00",
"dayOfWeek": [
"http://schema.org/Tuesday",
"http://schema.org/Thursday"
]
}
},
{
"@type": "PostalAddress",
"name": "Parkside Community College",
"postalCode": "CB1 1EH",
"addressLocality": "Cambridge",
"addressRegion": "Cambridgeshire",
"streetAddress": "Parkside",
"addressCountry": "GB",
"url": "https://goo.gl/maps/YgbmqtWvSD12",
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"opens": "17:00:00",
"closes": "18:00:00",
"dayOfWeek": [
"http://schema.org/Tuesday"
]
}
},
{
"@type": "PostalAddress",
"name": "Saint Mark's Church Community Centre",
"postalCode": "MK41 7UY",
"addressLocality": "Bedford",
"addressRegion": "Bedfordshire",
"streetAddress": "7 Calder Rise",
"addressCountry": "GB",
"url": "https://goo.gl/maps/agiXVoB2v432",
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"opens": "18:30:00",
"closes": "19:30:00",
"dayOfWeek": [
"http://schema.org/Friday"
]
}
}
]
}

View file

@ -0,0 +1,164 @@
<div>
<img src="">
<div>
<h3>Reflexology</h3>
<p></p>
<details> <summary>More</summary>
<p>
According to Reflexology's ancient Oriental philosophy there is an intrinsic relationship among all things, which is reflected in different levels. A small part of the body can influence the whole body, and vice versa. It can also serve as a map of its functioning. The study of those "micro-bodies" and their beneficial influences, in addition to other related exercises, are the basis of Reflexology classes in the Pa-Kua school.
</p>
<p>
Through the study of traditional and comprehensive techniques, reflexology accelerates the body's own healing process, helping it to return to a natural state of balance. In addition, it preserves our vitality and keeps stress at healthy levels. Those benefits are obtained through manipulations of the "micro-bodies" such as the feet, hands and ears. Learning how to stimulate those body parts with massages, can promote healing or prevent organ imbalances.
</p>
<p>
Benefits of the practice:
</p>
<ul>
<li>
Strengthens the body's immune system
</li>
<li>
Increases flexibility
</li>
<li>
Control and harmonization of breathing
</li>
<li>
Harmonization of the internal energy
</li>
<li>
Greater physical awareness
</li>
<li>
Physical and mental wellbeing
</li>
</ul>
</details></div>
</div>
<div>
<img src="">
<div>
<h3>Syntony</h3>
<p></p>
<details> <summary>More</summary>
<p>
In their constant search for answers, our ancestors realised that the key to understanding the Universe was self-study; achieving "Sintony" between themselves and the world around them. It is imperative, therefore, to work on harmonising our minds and body by practising movements and meditations that strengthen this connection. In the Pa-Kua School, this study is called Sintony, also known as Chinese Yoga; a path to self-knowledge through stretches, poses, breathing techniques, and meditation.
</p>
<p>
Sintony promotes excellent physical conditioning; movements tone and strengthen the body developing muscle mass while burning calories. Specifically, stretching exercises increase the students' flexibility, and help prevent injuries, whilst meditations oxygenate the body and regulate the cardiovascular system. The students will also learn techniques to relieve stress and achieve a state of tranquillity in their day-to day activities.
</p>
<p>
Benefits of the practice:
</p>
<ul>
<li>
Controls stress
</li>
<li>
Promotes relaxation and tranquillity
</li>
<li>
Improves physical posture
</li>
<li>
Greater stretching and flexibility
</li>
<li>
Harmonisation of metabolism
</li>
<li>
Muscle sculpting
</li>
<li>
Helps confront and control the ego
</li>
</ul>
</details></div>
</div>
<div>
<img src="">
<div>
<h3>Energy</h3>
<p></p>
<details> <summary>More</summary>
<p>
Traditional Chinese Medicine is one of the oldest healing arts and it's comprehensive classification of the human bioenergetics system is used worldwide. It not only uses effective methods of healing through acupressure and massages, but also offers therapeutic movements, study of nutrition, observations of daily habits, and identification of a person's disharmonies. Only through a holistic vision of the treatment can one reach the heart of the problem rather than treat symptoms.
</p>
<p>
This comprehensive approach is the basic principle of the Pa-Kua Energy discipline, which teaches and trains in the traditional techniques of manipulation and study of the internal energy, in order to improve a person's overall health, strength and vitality.
</p>
<p>
The regular practice of Pa-Kua Energy includes a variety of techniques that improve the vitality of the body and mind. The student also acquires knowledge in nutrition, energy pathways, massages, the theory of the Five Elements, the concept of Yin Yang, and much more.
</p>
<p>
Classes are open to anyone who has an interest in learning and practicing these ancient techniques for better health and a longer life.
</p>
<p>
Benefits of the practice:
</p>
<ul>
<li>
Regulating the Energy Cycles
</li>
<li>
Harmonisation of the metabolism
</li>
<li>
Improvement of general condition of the body
</li>
<li>
Increases energy and improves mental disposition
</li>
<li>
Learn contemporary practical applications of Traditional Chinese Medicine
</li>
</ul>
</details></div>
</div>
<div>
<img src="">
<div>
<h3>Rhythm</h3>
<p></p>
<details> <summary>More</summary>
<p>
Music and dance have accompanied human beings since ancient times. Sounds and vibrations generate various mental and physical effects, and therefore, have a great influence on us. This power has been utilised for multiple purposes, ranging from entertainment to spirituality, meditation to, even, preparation for combat. That study is an important source of knowledge that helps overcome our physical limitations. In the Pa-Kua school this is exemplified by Pa-Kua Rhythm, a combination of music and martial art.
</p>
<p>
Basic attacks using the legs and hands are combined to achieve velocity and explosion.
</p>
<p>
Reflexes will improve through an exciting regimen with a partner, using the rhythm of music to get in tune one with another. Strength and physical stamina are improved through routines that use punching bag and gloves, also improving both movement and posture wile hitting. You will burn calories while learning the principles of martial art in a fun and high energy class.
</p>
<p>
Benefits of the practice:
</p>
<ul>
<li>
Weight loss
</li>
<li>
Stress relief
</li>
<li>
Endurance
</li>
<li>
Improved coordination and core strength
</li>
<li>
Harmonizes bio-rhythms
</li>
<li>
Fun and relaxation to the rhythm of music
</li>
</ul>
</details></div>
</div>

104
page/about-us.html Normal file
View file

@ -0,0 +1,104 @@
<h1>Pa-Kua School UK</h1>
<div class="headline">
<div>
<p>
The Pa Kua Studio Cambridge opened in 2012 offering Martial Arts and Sword Training.
</p>
<p>
Today we also have Archery, Acrobatics, Tai Chi and Martial Arts for Kids, in multiple locations across the city. Our classes are for all ages and levels.
</p>
</div>
</div>
<article>
<h2>Our teachers and class leading instructors</h2>
<ul class="people">
<li>
<figure>
<img src="https://static.wixstatic.com/media/1aea5d_8451953798aa4e23a24ea12af7ee85a2~mv2.jpg" alt= "" />
<figcaption>
<strong>Rodolfo Oliva</strong>
<span class="rank">6th degree black belt Master</span>
<span class="classes">all classes</span>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="https://static.wixstatic.com/media/1aea5d_7d20d44d39c0443d88e96a1c8a4cfa8d~mv2.jpg" alt= "" />
<figcaption>
<strong>Simon Lamb</strong>
<span class="rank">1st degree black belt instructor</span>
<span class="classes">Acrobatics</span>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="https://static.wixstatic.com/media/1aea5d_7525fd96b1cb4c1bbdceee1128b5c923~mv2.jpg" alt= "" />
<figcaption>
<strong>John Waugh</strong>
<span class="rank">Red belt instructor</span>
<span class="classes">Martial Art</span>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="https://static.wixstatic.com/media/1aea5d_73aac4b027fa4a298c6c495321cca0b9~mv2.jpg" alt= "" />
<figcaption>
<strong>Tom Winch</strong>
<span class="rank">Red belt instructor</span>
<span class="classes">Edge Weapons</span>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="https://static.wixstatic.com/media/1aea5d_663b176ffece44f3b4ae3aff314959c2~mv2.jpg" alt= "" />
<figcaption>
<strong>Kasia Bukowska</strong>
<span class="rank">Red belt instructor</span>
<span class="classes">Archery</span>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="https://static.wixstatic.com/media/1aea5d_81d5760d82704390b652d4f51240e503~mv2.jpg" alt= "" />
<figcaption>
<strong>Alejandro Perez</strong>
<span class="rank">Blue belt instructor</span>
<span class="classes">Martial Art for Kids</span>
</figcaption>
</figure>
</li>
</ul>
<h2>Locations and map</h2>
<div class="frameholder">
<iframe
src="https://www.google.com/maps/d/embed?mid=1VTjRU0qGaYyDm46eMce0z8WpSLyyDt7W"
width="640"
height="480"
frameborder="0"
marginheight="0"
marginwidth="0"
>
</iframe>
</div>
<h2>Photos from our classes</h2>
INSERT_GALLERY_HERE
</article>

9
page/about-us.json Normal file
View file

@ -0,0 +1,9 @@
{
"@context": "http://schema.org",
"@type": "Article",
"inLanguage": "en",
"headline": "About Pa-Kua in the United Kingdom",
"name": "about-us",
"description": "",
"keywords": ["Martial Art", "Self Defense", "Acrobatics", "Chinese Archery", "Swordfight", "Chinese Weapons"]
}

24
page/contact.html Normal file
View file

@ -0,0 +1,24 @@
<h1>Contact Pa-Kua UK</h1>
<article>
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSewDbNRZZJZoGFclMlNZv71miUG17ghTLYJRRLjq1g4VAppUg/viewform?embedded=true"
style="width: 100%"
height="900"
frameborder="0"
marginheight="0"
marginwidth="0"
>
</iframe>
<h2>F.A.Q</h2>
<dl>
<dt>Are there ID or minimum age requirements to attend to classes?</dt>
<dd>Children under 14 are welcome to attend to Martial Art for Children; the other classes are for anyone 14 or above.</dd>
<dt>What clothing should I wear?</dt>
<dd>We recommend something comfortable for physical activity, such as workout, gym, martial art clothing. All of our classes include warmup excersizes, including archery.</dd>
</dl>
</article>

9
page/contact.json Normal file
View file

@ -0,0 +1,9 @@
{
"@context": "http://schema.org",
"@type": "Article",
"inLanguage": "en",
"headline": "",
"name": "",
"description": "",
"keywords": []
}

145
page/index.html Normal file
View file

@ -0,0 +1,145 @@
<h1>Home</h1>
<div class="hero" style="background-image:url('https://static.wixstatic.com/media/80d0c2_cbba08e62bec4306976786196cd07724~mv2_d_4928_3264_s_4_2.jpg');">
<p>
Join our classes today!
</p>
</div>
<section class="disciplines">
<div>
<img src="https://static.wixstatic.com/media/1aea5d_6cc8cfc9817d4338ab7f9237afcdde13~mv2.jpg">
<div>
<h3>Martial Art</h3>
<p>Learn kicks, punches, and self defence in a non-competitive, inclusive environment</p>
<details> <summary>More</summary>
<p>Through the study of Pa-Kua Martial Art, students will develop their physical strength, while learning unique techniques employing pressure points, levers, throws, and more. Pa-Kua fosters the students better understanding of them-selves and of their surroundings. This is facilitated by the non-competitive manner of teaching, whereby students challenges only themselves and their personal abilities.</p>
<p>On and off the mat, every student will face his or her own limitations and fears, having to strive toward overcoming them without any comparison to other students. This philosophy allows students of all ages and background to practice Pa-Kua Martial Art.</p>
<p>The technical aspect of Pa-Kua Martial Art includes circular movements and the use of the opponents strength against him or herself. A strong emphasis is placed on physical and mental balance, expressed through movements that are according to the needs of a particular situation both fluid and rigid, strong and slow. Each of the Eight Belt levels feature different aspects of Martial Art. When a Pa-Kua practitioner reaches the level of Black Belt, he or she is a complete warrior, confident in his or her abilities and of him or herself.</p>
<p><strong> Benefits of the practice: </strong></p>
<ul>
<li>Betters physical and mental strength</li>
<li>Increases physical self-awareness</li>
<li>Improves flexibility</li>
<li>Improves self-esteem and self-confidence</li>
<li>Strengths the character and personality</li>
<li>Encourages the values of a warrior, such as honour, strength and courage</li>
</ul>
</details></div>
</div>
<div>
<img src="https://static.wixstatic.com/media/1aea5d_9e3f231a4f334bcbb55632db0f1ed8b1~mv2.jpg">
<div>
<h3>Acrobatics</h3>
<p>Overcome your fears while having fun and building core strength</p>
<details> <summary>More</summary>
<p>Evidence of acrobatics exercises being practiced in China date prior to the Western Han Dynasty, 2500 years ago. During the Tang Dynasty, for example, acrobatics were part of the village harvest festivals. Nowadays, defying the laws of gravity continues to be an important part of the modern Chinese culture.</p>
<p>Pa-Kua Acrobatics is a class that develops your core strength, flexibility, and balance, working various muscle groups which are vital to the practice of postures and routines. A strong self-awareness develops and an acute mind/body connection occurs. Everything is taught according to the students abilities, who slowly acquires the necessary strength and skills needed before progressing to the next level of training. When the student feels prepared, and by overcoming fears and doubts, he or she will gradually learn how to do handstands, cartwheels, one-handed cartwheels, one-handed handstands, butterflies, bridges, front walkovers, back walkovers, front handsprings, back handsprings, front flips, back flips, and much more. It is a fun activity for friends to work together, training elaborate balance movements that require support and cooperation.</p>
<p><strong> Benefits of the practice: </strong></p>
<p>&nbsp;</p>
<ul>
<li>Increases muscle mass</li>
<li>Improves physical expression</li>
<li>Helps control and overcome fears</li>
<li>Improves physical and mental equilibrium</li>
<li>Reduces shyness and increases self-confidence</li>
<li>Increases confidence in group work</li>
</ul>
</details></div>
</div>
<div>
<img src="https://static.wixstatic.com/media/1aea5d_fb45586de2c04c71a3604d3bebe886e5~mv2.jpg">
<div>
<h3>Edged Weapons</h3>
<p>Learn to handle ancient Chinese weapons: swords, spears, daggers, knives</p>
<details> <summary>More</summary>
<p>The use of sharp edged weapons is an intrinsic part of human evolution and its struggle for survival. It has generated a fascination that has remained with us in modern times. In the Orient, following the „Way of the Sword“ not only gave an individual status, but also offered an existence of increased self-discipline and control. It also gave the individual an understanding of life, resulting from the daily interactions with dangerous situations. <br> <br> An integral part of the Pa-Kua knowledge, the study of Traditional Ancient Chinese Weapons is a way of developing the individuals Inner Warrior, developing inner strength while physically strengthening the body. Discipline, self-confidence and courage are just some of the many benefits derived from studying combat with edged weapons. <br> <br> Working with swords enhances precision, depth perception, and coordination. Studying the way of the ancient warrior remains essential for us today. Through this study we develop faster reflexes and courage to overcome our day-to-day battles, thus facing the world as leaders who can overcome difficulties with strength and determination. <br> <br> <strong> Benefits of the practice </strong></p>
<ul>
<li>Improves physical condition</li>
<li>Develops perception and speeds up reaction time</li>
<li>Betters body control</li>
<li>Helps overcome fears</li>
<li>Improves discipline and concentration</li>
<li>Positively impacts personality development</li>
</ul>
</details></div>
</div>
<div>
<img src="https://static.wixstatic.com/media/1aea5d_7aece67e56b641528ba25a3cb775eb1c~mv2.jpg">
<div>
<h3>Martial Art for Kids</h3>
<p>Gain self-confidence, social skills, focus, and control, from DBS certified instructors</p>
<details> <summary>More</summary>
<p>Kids Martial Arts is given to kids from age 4 and up. Children significantly benefit from the system that is built to suit their needs.The martial arts games, the kicks and punches, as well as the connections with other kids found through Pa-Kua Martial Arts, serve to increase the childs confidence, self-esteem, and social skills. At the same time Pa-Kua Martial Arts teaches the child to respect peers and elders, works on the students focus and control, and offers the student with the tools required for the full life that lies ahead. This always occurs in a positive atmosphere.</p>
<p>The many benefits of Pa-Kua Martial Arts for kids are clearly noticeable and shown in the childs school work, behavior at home, and interaction with family or friends. The classes for children are conducted in a completely safe and professional atmosphere, by Instructors and Masters who make sure the children develop their skills in complete safety.</p>
<p>All our Instructors and Masters are DBS (Disclosure and Barring Service) certificate (formerly CRB).</p>
</details></div>
</div>
<div>
<img src="https://static.wixstatic.com/media/1aea5d_4f5cbe148c484068ac2d7e0874339dda~mv2.jpg">
<div>
<h3>Oriental Archery</h3>
<p>Learn to focus, relax, and find the perfect shot</p>
<details> <summary>More</summary>
<p>Throughout the centuries wise men have looked for the deep meaning of our day-to-day life practices in order to have a better contact with ourselves: calligraphy, martial arts, the tea ceremony, the theater… and archery was not the exception.</p>
<p>Many factors compose the “perfect shot” and they are mostly mental. The delicate equilibrium needed to release that shot, leads to achieving higher mental states. Many ancient Oriental philosophers devoted themselves to archery in search for those higher states of consciousness, known by many as illumination. That fostered a development of Chinese Archery which has maintained, through the ages, its simplicity and beauty.</p>
<p>Breathing is also fundamental to the process. When it is kept stable and synchronized with the movements, the execution of the shot becomes easy and natural. The various shooting positions help develop a better understanding of the body, and gives the mind a better capacity for adapting to surrounding changes. That is the base of an extremely functional shooting style.</p>
<p><strong> Benefits of the practice: </strong></p>
<ul>
<li>Improves concentration</li>
<li>Better physical and mental equilibrium</li>
<li>Improvement in body posture</li>
<li>Breathing development</li>
<li>Relaxation</li>
</ul>
</details></div>
</div>
</section>
<section class="schoolintro">
<div class="info">
<h2>WHO WE ARE</h2>
<p>
Founded in 1976, by Master Rogelio Giordano Magliacano, the Pa-Kua Internatinal Leauge has become an institution of importance in many parts of the world with thousands of disciples across the world.
</p>
<p>Master Rogelio Magliacano devoted himself to the study of martial arts and healing sciences from an early age, achieving high degrees inside the black belt in several disciplines and playing as Master in them, before he was ready to start learning Pa Kua with Master I Chan Ming. After a hard work of learning, Master I Chan Ming named him his successor and only responsible to continue the TRANSMISSION of the Pa Kua knowledge worldwide.
</p>
</div>
<div class="bg"></div>
</section>
<section class="signup">
<h2>Subscibe to newsletter</h2>
<form id="mc-embedded-subscribe-form" action="https://pakuauk.us20.list-manage.com/subscribe/post?u=f9f0b5395095c59a0d735a158&amp;id=db77aa21ef" method="post" name="mc-embedded-subscribe-form" novalidate="" target="_blank">
<p>
<label for="mce-FNAME">First Name </label>
<input type="text" value="" name="FNAME" class="" id="mce-FNAME" placeholder="⚪ first name">
<label for="mce-LNAME">Last Name </label>
<input type="text" value="" name="LNAME" class="" id="mce-LNAME" placeholder="⚫ last name">
<label for="mce-EMAIL">Email Address</label>
<input id="mce-EMAIL" name="EMAIL" class="required" type="email" value="" placeholder="✉ e-mail address">
<input id="mc-embedded-subscribe" class="button" name="subscribe" type="submit" value="Subscribe">
</p>
<div>
<label for="interestgroup_field">Please select all the ways you would like to hear from Pa-Kua UK:</label>
<fieldset class="mc_fieldset gdprRequired mc-field-group" name="interestgroup_field">
<label class="checkbox subfield" for="gdpr_26907">
<input id="gdpr_26907" class="av-checkbox gdpr" name="gdpr[26907]" type="checkbox" value="Y" checked="checked">
Email
</label>
</fieldset>
</div>
<p class="content__gdprLegal">
We use Mailchimp as our marketing platform. By clicking below to subscribe, you acknowledge that your information will be transferred to Mailchimp for processing.
<a href="https://mailchimp.com/legal/" target="_blank" rel="noopener">
Learn more about Mailchimp's privacy practices here.
</a>
You can unsubscribe at any time by clicking the link in the footer of our emails.
</p>
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input tabindex="-1" name="b_f9f0b5395095c59a0d735a158_db77aa21ef" type="text" value="">
</div>
</form>
</section>

9
page/index.json Normal file
View file

@ -0,0 +1,9 @@
{
"@context": "http://schema.org",
"@type": "Article",
"inLanguage": "en",
"headline": "Pa-Kua School UK",
"name": "index",
"description": "",
"keywords": ["Martial Art", "Self Defense", "Acrobatics", "Chinese Archery", "Swordfight", "Chinese Weapons"]
}

224
page/the-school.html Normal file
View file

@ -0,0 +1,224 @@
<h1>
Pa-Kua International League
</h1>
<div class="headline" style="background-image:url('https://static.wixstatic.com/media/1aea5d_306a19c547314b89be04a5c0b42e92e4~mv2.jpg');">
<div>
<p>
Pa-Kua is an ancient Chinese knowledge based on the study of changes in nature. It's study and practice feature a variety of ancient concepts such as Yin Yang, Sky Man and Earth, the Five Elements, and the Eight States of Change.
</p>
<p>
A system of study was developed by the late founder of the Pa-Kua International League, Master Rogelio Giordano Magliacano (1943 — 2007), featuring a broad range of courses and disciplines catering to the specific interests of any student.
</p>
</div>
</div>
<article>
<div class="frameholder">
<iframe
src="https://www.youtube-nocookie.com/embed/chDKc01JeMQ"
allow="accelerometer; autoplay; encrypted-media; gyroscope picture-in-picture"
width="560"
height="315"
allowfullscreen
frameborder="0"
marginheight="0"
marginwidth="0"
>
</iframe>
</div>
<h2>
The International League
</h2>
<p>
Master Rogelio Giordano Magliacano officially founded the Pa-Kua International League in 1976. Master Magliacano began his study of Asian martial arts in 1952 and achieved various high degrees in many disciplines. Two decades of martial practice fully prepared him for the study of Pa-Kua with Master I Chan Ming in the Far East, who later named him his successor. Master Ming felt that among his disciples, Master Magliacano was the only one who truly understood the Pa-Kua knowledge in its entire spectrum.
</p>
<h3>
Official Web Page and Updates
</h3>
<p>
The official Pa-Kua website is at
<a href="http://www.pakuak.com/">
www.pakuak.com
</a>
. It includes up-to-date information about the different Pa-Kua schools around the world, pictures, videos, and much more.
</p>
<p>
You can also subscribe to the Pa-Kua newsletter, which includes news and updates, by sending an email to:
<a href="mailto:difusionmundial@pakua.com">
difusionmundial@pakua.com
</a>
</p>
<h2>
Pa-Kua classes and school activities
</h2>
<h3>
Regular Classes
</h3>
<p>
Regular classes held on a weekly basis and are usually under the care of an Instructor or Master. These classes follow a curriculum based on a Belt system. Each practitioner is taught in a manner that foster care toward other practitioners in a non-competitive environment.
</p>
<p>
Currently there are nine Pa-Kua Disciplines: Martial Art, Edged Weapons, Sintony (Chinese Yoga), Cosmo Dynamics, Archery, Pa-Kua Rhythm, Reflexology, Pa-Kua Energy and Acrobatics.
</p>
<p>
Regular classes are usually held in small groups. They last approximately fifty minutes, preceded by five minutes to get set and introduce the class, and conclude with five minutes of answers to questions and announcements.
</p>
<h3>
Children&rsquo;s Regular Classes
</h3>
<p>
Children are separated into two age groups, 4 to 9 years old and 10 to 14 years old. They follow a slightly different progression than adult students when it comes to the curriculum and the time spent at each Belt level.
</p>
<p>
Parents are invited to attend any of the classes their child is participating in, provided they do not distract them or interfere with their performance. Parents&rsquo; partnership and involvement in the Pa-Kua learning process is extremely important, hence we encourage parents to keep in touch with the Instructor responsible for their child as well as with the school&rsquo;s administrators. The Pa-Kua Association and the Responsible Masters are always available to receive comments and suggestions from parents.
</p>
<h3>
Private Classes for the various Discplines
</h3>
<p>
As an addition to the regular attended classes, and with the aim of offering more options to individual students, private classes are available to work on the student&rsquo;s specific subject of interest of. This will allow a student to make the most out of the Instructor&rsquo;s teaching experience. For information about cost and to schedule a class, please speak directly with your Instructor.
</p>
<h3>
Instructor&rsquo;s Classes
</h3>
<p>
These classes are designed for Instructors who wish to improve their teaching skills and acquire additional knowledge. For more information (costs, availability, etc.) please speak directly with the Responsible Masters.
</p>
<h3>
Special Classes
</h3>
<p>
A Special Class targets a specific aspect or topic within a Discipline. These classes are scheduled either at the student&rsquo;s request or when the Instructor deems it necessary to the student&rsquo;s continued training.
</p>
<h3>
Course Training Classes
</h3>
<p>
After the completion of any Course (explained in more detail below), students can participate in training classes that will reinforce and provide additional training of the material covered in the Course.
</p>
<h3>
Courses
</h3>
<p>
In addition to the Disciplines, Pa-Kua International League offers a broad range of courses that cover specific topics. These courses enrich the student&rsquo;s Pa-Kua knowledge thus making his or her studies more comprehensive.
</p>
<p>
Courses are divided into levels and are taught by local or Itinerant Third Degree Masters or higher.
</p>
<p>
Here are some of the courses:
</p>
<ul>
<li>
Weapons: Long Stick, Short Stick, Nunchaku, Three-section articulated staff, Knife, Grand Sword, Throw Arms, Pa-Kua Jian, Tonfa, Sai, Cane, Archery
</li>
<li>
Harmonization: Chien Chi Kua, Massages, Energy Pathways, Seasonal Movements, Tian Ling (Feng Shui), Personal Profile, Nutrition
</li>
<li>
Martial Art Courses: Circular Combat (Chuan), Free Fighting, Body-to-Body
</li>
</ul>
<p>
&nbsp;
</p>
<h2>
System and organization
</h2>
<h3>
Evaluations
</h3>
<p>
The International Pa-Kua League&rsquo;s educational system is based on the gradual progression of levels, closely monitored by several Masters. The ceremonial passage from one level to another (Belts) occurs through the Evaluation, which is unlike the Belt examinations found in other schools of Oriental knowledge. Before presenting him or her self to an Evaluation, the practitioner needs to fulfill certain requirements which include time of practice and study plan. But most importantly, he or she must undergo a personal development within the current belt.
</p>
<p>
To ensure the Evaluation&rsquo;s fairness, it is leaded by a Master other than the one responsible for the student&rsquo;s education, which is usually an Itinerant Master. The Evaluator undergoes training to effectively lead an Evaluation.
</p>
<p>
The are eight Belts: White, Yellow, Orange, Green, Grey, Blue, Red, and Black. From White to Grey belts, Evaluations occur every two to four months with the student having attended at least sixteen general classes per Belt. The student can participate in any available Evaluation at any time. The cost of receiving the next Belt, regardless of how many Evaluations were attended, is defined by the International Pa-Kua League. From Grey belt onwards, level passage requires the student to participate in a Seminar in addition to attending regular classes.
</p>
<h3>
Children&rsquo;s Evaluations
</h3>
<p>
The Evaluation system for children differs slightly from the adult system. In order to move up Belt, children are evaluated in two age groups: 4 to 9 year old, and 10 to 14 year old.
</p>
<p>
During the Evaluation they are assessed on their techniques, and also on their respectful behavior toward parents, instructors, and fellow students, both inside and outside the training facilities. A report is prepared before an Evaluation by the Instructor in charge, taking in consideration the progress and behavior of the student during general classes. At the Evaluation, the effort each child makes during the different activities and their progressive development of the techniques is taken into consideration. Helping children develop in general, gain self-confidence and enhance their general education is as important as their study of Martial Art techniques.
</p>
<h3>
Pa-Kua Open Classes
</h3>
<p>
This is the most important event of the Pa-Kua school worldwide, in which Pa-Kua practitioners &ndash; Masters, Instructors, students, their relatives, and guest &ndash; from all over the world, meet and share their experiences during a weekend in which all the Disciplines are practiced.
</p>
<p>
Pa-Kua practitioners from various parts of the world mount exhibitions demonstrating the various Pa-Kua Disciplines. The event culminates in a &ndash; usually &ndash; very large Martial Art class, punctuated by a Belt ceremony.
</p>
<p>
Currently, there are three Open Classes every year: in North America, in Europe, and the International Gathering in South America.
</p>
<p>
The main goal of the Open Classes is for the different members and students of the Pa-Kua school worldwide to get together, integrate, and socialise.
</p>
<h3>
Itinerancies
</h3>
<p>
The Pa-Kua International League monitors and regulates the manner and levels in which Pa-Kua is taught all over the world. This task is made possible by regular visits of Itinerant Masters to any part of the world where a representative of the Pa-Kua League is teaching.
</p>
<p>
Itinerant Masters perform Evaluations and can also teach Special Classes, Regular Seminars, Courses and other activities to any student who desires to take the opportunity to further their Pa-Kua knowledge.
</p>
<p>
In general, Itinerant Masters have extensive life and teaching experience, have visited numerous places, speak more than one language, and have undergone special teaching training.
</p>
<h3>
Uniforms, Accessories, etc.
</h3>
<p>
It is of outmost importance that each student possesses a uniform and the accessories needed for training in a specific discipline.
</p>
<p>
Accessories can be purchased on the European Pa-Kua store online at pakuastore.com
</p>
<p>
Belts obtained during an Evaluation will be supplied by the Pa-Kua International League and sent to practice location of each student. The process takes a few weeks in order for the Administration to check all the data and to mail it. When the Belts, Patches and/or certificates are received, they will be presented to the students in the various classes within the shortest delays.
</p>
<h3>
Training of Instructors and Masters
</h3>
<p>
Teaching is perhaps the most complex and gratifying experience that a human being can be involved in. At the Pa-Kua International League we are constantly on the look out for individuals willing to dedicate them self to teaching and diffusing the Pa-Kua knowledge. For that purpose, since 1976, Pa-Kua has established a complete Teaching System, which, through the years has constantly been updated. This system has allowed for the expansion of the Pa-Kua School in sixteen countries.
</p>
<p>
Currently, there are two manners to achieve the level of Instructor, followed by the level of Master: either Regular Classes and Seminars, or Intensive Seminars. Training is adapted to the level of the student, according to the regulations issued by the Pa-Kua International League.
</p>
<p>
Training accreditation have international validity, thus allowing Masters to teach all over the world.
</p>
<h3>
Regular Seminars
</h3>
<p>
After achieving the level of Grey Belt &ndash; usually after training during a period of eight to twelve months &ndash; a student of the Pa-Kua International League can start teaching Regular classes to White Belts. This allows the student to start building his own student base.
</p>
<p>
In the beginning of his teaching career, the student will be under the supervision of his Master and of the Pa-Kua school. Progressively the student will develop the abilities to teach independently in a professional manner. Pa-Kua Instructors and Masters are all trained to lead groups of students, and acquire the tools to do so independently. The Superior Masters will constantly provide supervision and support.
</p>
<h3>
Intensive Seminars
</h3>
<p>
The Pa-Kua International League&rsquo;s Intensive Seminars are the right choice for those students who would like to deepen their knowledge. These seminars are designed for the modern man and woman, who work, study, and have little time for leisure activities, but nonetheless have and extreme curiosity and desire for personal growth and self-reflection.
</p>
<p>
The curriculum of this type of Seminar comprises of techniques, philosophy and training, adapted to the student&rsquo;s physical and mental needs. What makes these seminars so successful is that they are tailored for each student allowing him or her to not only learn faster but also develop particular areas of interest.
</p>
<p>
At present, the Intensive Seminars are the most direct manner to access to the Pa-Kua knowledge, and the fastest and most effective way of learning. They are also a starting point to pursue a teaching track in a professional manner.
</p>
<p>
Before an Intensive Seminar can begin, an email request has to be submitted to the Superior Masters.
</p>
</article>

9
page/the-school.json Normal file
View file

@ -0,0 +1,9 @@
{
"@context": "http://schema.org",
"@type": "Article",
"inLanguage": "en",
"headline": "Pa-Kua International League",
"name": "the-school",
"description": "Description of Pa-Kua International League, of it's origins, and it's system.",
"keywords": []
}

87
page/timetable.html Normal file
View file

@ -0,0 +1,87 @@
<h1>TIMETABLE AND FEES</h1>
<article>
<iframe
src="https://calendar.google.com/calendar/embed?showTitle=0&amp;showPrint=0&amp;showTabs=0&amp;showCalendars=0&amp;mode=AGENDA&amp;height=480&amp;wkst=2&amp;hl=en_GB&amp;bgcolor=%23ffffff&amp;src=dnfoaa35ln0g5c0vnr2sh7r8dg%40group.calendar.google.com&amp;color=%23ba0000&amp;ctz=Europe%2FLondon"
frameborder="0"
marginheight="0"
marginwidth="0"
style="width:100%; height:20em"
>
</iframe>
<h2>Calendars</h2>
<table>
<tr>
<td>Recurring classes</td>
<td>
<a href='https://calendar.google.com/calendar/embed?src=dnfoaa35ln0g5c0vnr2sh7r8dg%40group.calendar.google.com&ctz=Europe%2FLondon'>
google or web
</a>
</td>
<td>
<a href='https://calendar.google.com/calendar/ical/dnfoaa35ln0g5c0vnr2sh7r8dg%40group.calendar.google.com/public/basic.ics'>
iOS or ical
</a>
</td>
</tr>
<tr>
<td>Special classes, seminars, itinerancies</td>
<td>
<a href='https://calendar.google.com/calendar/embed?src=da88f0f0mbd7cc59bg8i2p3mo0%40group.calendar.google.com&ctz=Europe%2FLondon'>
google or web
</a>
<td><a href='https://calendar.google.com/calendar/ical/da88f0f0mbd7cc59bg8i2p3mo0%40group.calendar.google.com/public/basic.ics'>
iOS or ical
</a>
</td>
</tr>
<tr>
<td>Program of European Open Classes and Spring Retreat</td>
<td>
<a href='https://calendar.google.com/calendar/embed?src=ghc90g6ht6jk9k7qcg86fonon0%40group.calendar.google.com&ctz=Europe%2FLondon'>
google or web
</a>
</td>
<td>
<a href='https://calendar.google.com/calendar/ical/ghc90g6ht6jk9k7qcg86fonon0%40group.calendar.google.com/public/basic.ics'>
iOS or ical
</a>
</td>
</tr>
</table>
<h2>Monthly fees</h2>
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>First class per calendar month</th>
<th>Every additional class per calendar month</th>
</tr>
</thead>
<tbody>
<tr>
<td>Adults (20% discount for University Students)</td>
<td>&pound;34</td>
<td>&pound;15</td>
</tr>
<tr>
<td>Kids (10% discount for siblings)</td>
<td>&pound;28</td>
<td>-</td>
</tr>
</tbody>
</table>
<h2>Drop-in fees</h2>
<table>
<tr>
<td>Any 60 minute class</td>
<td>&pound;10</td>
</tr>
</table>
</article>

9
page/timetable.json Normal file
View file

@ -0,0 +1,9 @@
{
"@context": "http://schema.org",
"@type": "Article",
"inLanguage": "en",
"headline": "",
"name": "",
"description": "",
"keywords": []
}

15
site.json Normal file
View file

@ -0,0 +1,15 @@
{
"@context": "http://schema.org",
"@type": "WebSite",
"headline": "Pa-Kua School UK",
"url": "https://pakuauk.com",
"name": "pakuauk.com",
"image": "https://pakuauk.com/favicon.png",
"sameAs": [
"https://www.facebook.com/PaKuaUK",
"https://www.twitter.com/pakuauk",
"https://www.youtube.com/pakuauk",
"https://instagram.com/pakuauk",
"https://www.eventbrite.co.uk/o/pa-kua-international-school-19817765035"
]
}

554
style.css Normal file
View file

@ -0,0 +1,554 @@
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;
margin: 0;
padding: 0;
line-height: 1.5em;
}
html,
body > footer {
background-color: #222;
}
body {
color: #222;
background-color: #fff;
}
a {
color: #ba0000;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p {
margin: 1em 0;
}
h1, h2, h3, h4 {
text-transform: uppercase;
}
dt {
font-weight: bold;
font-size: 1.1em;
margin: 1em 0 0.3em 0;
}
h1 {
display: block;
width: 100%;
text-align: center;
color: #fff;
background-color: #ba0000;
font-size: 1.7em;
padding: 1em 0;
}
h2 {
font-size: 1.6em;
margin: 1em 0 0.6em 0;
}
nav > ul {
list-style-type: none;
line-height: 3em;
}
nav > ul > li {
display: inline-block;
padding: 0.3em 0.4em;
}
body > header,
body > footer {
padding: 1em;
}
body > footer {
color: #eee;
}
body > header > section,
body > footer > section {
display: flex;
justify-content: space-between;
max-width: 70em;
margin: 0 auto;
}
body > header > section > nav {
align-items: center;
padding: 1em 0;
}
body > header > section > svg {
height: 4em;
width: auto;
}
body > header a {
color: #000;
font-weight: bold;
font-size: 90%;
}
body > header a:hover,
body > header a.active {
color: #ba0000;
}
body > footer h3 {
margin: 0 0 0.3em 0;
}
body > footer ul {
margin: 0 0 1em 0;
list-style-type: none;
}
body > footer ul li {
margin: 0 0 0.6em 0;
}
body > footer a {
color: #ccc;
}
body > footer a:hover {
color: #ba0000;
}
body > footer > section > div > a > svg {
width: 20em;
}
body > footer nav ul img {
width: 3em;
}
body > footer nav {
text-align: center;
margin-top: 2em;
}
.disciplines > div {
margin:2em auto;
}
.disciplines > div {
display: flex;
align-items: center;
justify-content: center;
}
.disciplines div:nth-child(even) {
flex-direction: row-reverse;
}
.disciplines div img {
display: block;
max-height: 90vh;
max-width: 50%;
border: 0px solid none;
}
.disciplines div div {
text-align: center;
max-width: 48%;
}
.disciplines > div > div * {
padding: 0.6em;
}
.disciplines > div > div > p {
letter-spacing: 0.03em;
font-size: 1.6em;
}
table {
width: 100%;
margin: 2em 0;
border-collapse: collapse;
}
td, th {
padding: 0.3em;
border: 1px solid #777;
text-align:left;
}
th {
font-weight: bold;
}
th, tr:nth-child(even) {
background-color: rgba(0, 0, 0, 0.1);
}
details {
display: block;
}
details * {
text-align: left;
}
summary {
text-align: center;
border: 1px solid #ba0000;
color: #ba0000;
font-weight: bold;
padding: 1em 0;
width: 16em;
margin: 0 auto;
cursor: pointer;
transition: 0.5s;
}
article {
padding: 1em;
max-width: 58em;
margin: 0 auto;
}
main h3 {
text-transform:uppercase;
font-size: 1.3em;
}
main ul {
margin-left: 1.2em;
}
main ul li {
line-height: 1em;
}
.hero {
min-height: 30em;
max-height: 90vh;
background-position: center;
background-size: cover;
display: flex;
justify-content:end;
background-attachment:fixed;
}
.hero p {
font-size: 4em;
color: rgba(255,255,255,0.9);
text-shadow: 1px 1px 0 #000;
align-self:flex-end;
margin: 1em;
}
.headline {
font-size: 1.2em;
letter-spacing: 0.03em;
margin: 0 auto;
background-position: center;
background-size: cover;
display: flex;
justify-items: center;
}
.headline div {
background-color: rgba(255,255,255,0.9);
padding: 2em;
margin: 2em auto;
max-width: 40em;
}
.frameholder {
position: relative;
width: 100%;
height: 0;
padding-bottom: 51%;
}
.frameholder iframe {
position: absolute;
width: 100%;
height: 100%;
left: 0; top: 0;
}
.people {
list-style-type: none;
margin: 0;
padding:0;
display: flex;
flex-wrap: wrap;
justify-content:center;
}
.people img {
width: 8em;
margin-bottom: 1em;
}
.people li {
text-align: center;
min-width: 12em;
padding: 1em 0;
margin: 1em;
}
.people strong,
.people .rank,
.people .classes {
display: block;
}
.people .rank,
.people .classes {
font-size: 0.9em;
}
.schoolintro {
background-color: #ddd;
position:relative;
padding: 2em 0;
}
.schoolintro .bg {
display: block;
position: absolute;
left: 10%;
width: 50%;
top: 1em;
bottom: 1em;
background-image:url('https://static.wixstatic.com/media/80d0c2_0ac5f36579244b7cb4b80beccee32ac9.png/v1/fill/w_480,h_680,al_c,usm_0.66_1.00_0.01/80d0c2_0ac5f36579244b7cb4b80beccee32ac9.png');
background-position: center;
z-index: 1;
background-size:cover;
background-repeat: no-repeat;
}
.schoolintro .info {
position: relative;
display: block;
margin: 0 10% 0 50%;
background-color: #222;
color: #eee;
padding: 2em;
z-index: 2;
}
body > header > section > input,
body > header > section > label {
display: none;
}
.signup {
background-color: #111;
padding: 2em 0;
color: #eee;
}
.signup h2 {
text-align: center;
color: rgba(255, 126, 45, 1);
}
.signup > * {
max-width: 58em;
margin: 0 auto;
}
#mc-embedded-subscribe-form label {
font-weight: bold;
}
#mc-embedded-subscribe-form > p label {
display: none;
}
#mc-embedded-subscribe-form input[type=text],
#mc-embedded-subscribe-form input[type=email] {
display: inline-block;
min-width: 20em;
background-color: #111;
border: none;
border-bottom: 2px solid rgba(255, 126, 45, 1);;
padding: 0.6em 0.3em;
color: #ccc;
}
#mc-embedded-subscribe-form input[type=email] {
color: rgba(255, 126, 45, 1);
}
#mc-embedded-subscribe-form input[type=checkbox]{
display: inline;
width: auto;
margin: 0 0.3em 0 1em;
}
#mc-embedded-subscribe-form fieldset {
display: inline;
border: none;
}
#mc-embedded-subscribe-form input[type=submit] {
background-color: #000;
border: 2px solid rgba(255, 126, 45, 1);
color: rgba(255, 126, 45, 1);
padding: 0.6em;
margin: 1em 0;
cursor: pointer;
transition: 0.5s;
}
#mc-embedded-subscribe-form input[type=submit]:hover {
border-color: #fff;
color: #fff;
}
@media all and (max-width: 58em) {
h2, h3, h4 {
text-align: center;
}
body > header > section > input ~ label {
cursor: pointer;
font-size: 2em;
transition: 0.5s;
display: block;
position: absolute;
top: 0.5em;
right: 0.5em;
color: #ba0000;
border: 1px solid #ba0000;
z-index: 99;
background-color: #fff;
padding: 0.1em 0.4em;
}
body > header > section > input ~nav {
position: fixed;
display: block;
right: -100%;
transition: 0.5s;
background-color: rgba(255, 255, 255, 0.9);
top: 0;
bottom: 0;
padding: 6em 4em 1em 1em;
z-index: 10;
box-shadow: 1px 0 5px #000;
}
body > header > section > input ~nav svg {
position: relative;
height: 4em;
display: block;
margin: 0 auto 1em auto;
}
body > header > section > input ~nav li {
display: block;
font-size: 1.6em;
}
body > header > section > input:checked ~ label {
transform: rotate(90deg);
position: fixed;
}
body > header > section > input:checked ~nav {
right: 0;
}
.schoolintro .info {
margin: 0 5%;
}
.schoolintro .bg {
left:0;
right: 0;
width: 100%;
}
body > footer > section {
display: block;
margin: 0 auto;
}
.disciplines > div {
display: block;
margin-bottom: 6em;
}
body > footer > section > div {
margin: 3em 0;
}
body > footer > section {
display: block;
text-align: center;
}
.disciplines div img {
margin: 0 auto;
}
.disciplines div img {
max-width: 100%;
}
.disciplines div div {
max-width: 100%;
}
details p {
text-align: justify;
}
.headline div {
/*! margin: 0.6em; */
padding: 0.6em;
text-align: center;
}
.hero {
justify-content:center;
}
.hero p {
font-size: 3em;
}
#mc-embedded-subscribe-form {
padding: 1em;
}
#mc-embedded-subscribe-form input[type=text],
#mc-embedded-subscribe-form input[type=email],
#mc-embedded-subscribe-form input[type=submit] {
display: block;
margin: 1em auto;
}
}
details[open] summary {
background-color: #ba0000;
color: #fff;
}
details[open] summary ~ * {
animation: sweep .5s ease;
}
@keyframes sweep {
0% {opacity: 0; }
100% {opacity: 1; }
}