COVID-19 Policies

“use strict”;

var positionImage = function positionImage(imageEl) {
var imageDimensions = imageEl.dataset.imageDimensions.split(‘x’);
var originalWidth = imageDimensions[0];
var originalHeight = imageDimensions[1];
var focalPoint = imageEl.dataset.imageFocalPoint.split(‘,’);
var focalPointX = focalPoint[0];
var focalPointY = focalPoint[1];
var parentNode = imageEl.parentNode;

var scale = function () {
var imageRatio = originalWidth / originalHeight;
var parentClientSize = {
height: parentNode.clientHeight,
width: parentNode.clientWidth
};
var parentRatio = parentClientSize.width / parentClientSize.height;

if (imageRatio > parentRatio) {
return parentClientSize.height / originalHeight;
}

return parentClientSize.width / originalWidth;
}();

var getRelativeOffset = function getRelativeOffset() {
var targetWidth = Math.ceil(originalWidth * scale);
var targetHeight = Math.ceil(originalHeight * scale);
var parentDimensionWidth = parentNode.offsetWidth;
var parentDimensionHeight = parentNode.offsetHeight;
var overflowWidth = targetWidth – parentDimensionWidth;
var overflowHeight = targetHeight – parentDimensionHeight;
var valueX;

if (overflowWidth === 0) {
valueX = focalPointX;
} else {
valueX = Math.max(Math.min(targetWidth * focalPointX – parentDimensionWidth * 0.5, overflowWidth), 0) / overflowWidth;
}

var valueY;

if (overflowHeight === 0) {
valueY = focalPointY;
} else {
valueY = Math.max(Math.min(targetHeight * focalPointY – parentDimensionHeight * 0.5, overflowHeight), 0) / overflowHeight;
}

return {
valueX: valueX,
valueY: valueY
};
};

var relativeOffset = getRelativeOffset();
var valueX = relativeOffset.valueX;
var valueY = relativeOffset.valueY;
imageEl.style.objectPosition = “”.concat(valueX * 100, “% “).concat(valueY * 100, “%”);
};

Please ensure that that you are aware of, and familiar with, the COVID-19 policies below.

– I would ask parents not to enter the building if possible. If you need to talk to me please call me or else ask your child to let me know and I will come out to see you. 

– Students please wait outside (if possible) until your allotted time.

– There will be a hand sanitizing station immediately on entering the building, and more will be available in my room.

– I will wear a mask and will stay 2m away from students unless I absolutely have to be closer to briefly demonstrate something. 

– As per school guidelines, the wearing of a mask by primary school students will not be compulsory. I would ask secondary school students to wear a mask in lessons please.

– All chairs and music stands will be wiped down with disinfectant between lessons.

NB I would ask each electric guitar or electric bass student to please bring their own lead. I will have an amplifier into which it can be plugged.


Contact Tracing

In order to assist with any potential need for contact tracing, I will be undertaking the following procedure:

Students must fill in a health questionnaire prior to beginning the term. This questionnaire simply confirms that the student has no COVID-19 symptoms at the present time, or within the previous two weeks.

Questionnaire is available here: https://forms.gle/BdUZAgjXhEYF3mBr9

On the morning of your lesson I will send an email asking you to confirm that the student in question is symptom-free on that particular day. It’s essential that I receive an answer to this text in order to allow the student into the lesson later that afternoon. 

Please understand that this is necessary to ensure accurate contact tracing in the event of an outbreak. 


Is this your new site? Log in to activate admin features and dismiss this message
Log In