The Gwennili Trust

Charity Number: 1049041
Address: Oakside, Stibb Green, Burbage, Wiltshire
Postcode: SN8 3AU
Phone: 01672 810 740
Website: www.gwennili.org.uk
Email: jpthornton1@outlook.com
Summary: The Gwennili Trust was founded in 1995 to provide yacht sailing opportunities for people with disabilities, and with a particular focus on those with military connections . Over the years people of all ages with a wide range of disabilities whether visually impaired, with learning difficulties or of limited mobility have enjoyed the thrill of sailing with us.
Note/Restrictions: Irrespective of age or disability, yacht sailing is easily accessible through the Gwennili Trust. Whether you are a first time sailor or an experienced sea dog we have something for you. Our Sailing Programme ranges from simple day sails in the Solent on a wheelchair friendly catamaran to longer cruises to France and the Channel Islands on conventional yachts (weather of course permitting). We also run practical training courses which can provide people with disabilities RYA certification to Competent Crew, Day Skipper and above.
Related Articles
Gwennili Sailing Trust
Contact details Website: https://www.gwennili.org.uk Affiliations page: https://www.gwennili.org.uk/affiliations What this organisation does Gwennili Sailing Trust is a sailing charity that works with a range of charities and organisations supporting ...
BEWSA - British Ex-services Wheelchair Sports Association
Charity Number: 1071226 Contact: Mrs Marilyn Thomas, Honorary Treasurer/Team Manager Address: 12 Tuke Close Falmouth Cornwall Postcode: TR11 2HL Phone: 01326 318780 Email: info@bewsa.org Summary: To promote welfare and rehabilitation of disabled ...
Nautical Training Corps
Charity Number: 306084 Contact: The National Secretary Address: National Headquarters, 72 Wick Farm Road, Wick, Littlehampton, West Sussex Postcode: BN17 7HG Website: www.ntc.org.uk Email: natsec@ntc.org.uk Summary: The Nautical Training Corps (NTC) ...
ITF Seafarers' Trust
Charity Number: 281936 Contact: Switchboard Address: ITF House, 49-60 Borough Road, London Postcode: SE1 1DR Phone: 0207 403 2733 Website: www.seafarerstrust.org Email: trust@itf.org.uk Summary: The ITF Seafarers’ Trust provides funds for ...
ITF Seafarers’ Trust
Contact Website: https://www.seafarerstrust.org Contact page: https://www.seafarerstrust.org/contact-us Email: trust@itf.org.uk Postal address: ITF Seafarers’ Trust, ITF House, 49-60 Borough Road, London SE1 1DR, United Kingdom What this organisation ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();