Willie Seager Memorial Trust (Cardiff)

Charity Number: 219008
Address: Aelwyd Housing Association, Ground Floor, 9 Ty Nant Court, Morganstown, Cardiff
Cymdeithas Tai Aelwyd Cyf Y Llawr Gwaelod, 9 Cwrt Tŷ Nant, Pentre-poeth, Caerdydd,
Postcode: CF15 8LW
Phone: 02920 481203
Website: www.aelwyd.co.uk
Email: sharonL@aelwyd.co.uk
Summary: The Trust provides 10 one-bedroom bungalows for the accommodation of single elderly and retired merchant seafarers.
Note/Restrictions: Residents must have some connection with the Port of Cardiff and the sea. There is a lower age limit for admission of 60 years. All ranks and ratings can be accepted as well as widows.
Related Articles
Haig Housing Trust (MN veterans served in conflict)
Charity Number: 1125556 Contact: Housing Options Address: Alban Dobson House, Green Lane, Morden, Surrey Postcode: SM4 5NS Phone: 020 8685 5777 Website: www.haighousing.org.uk Email: enquiries@haighousing.org.uk Summary: The Trust is the leading ...
Haig Housing Trust
Contact details Website: https://www.haighousing.org.uk/ Telephone: 020 8685 5777 Postal address: Haig Housing Trust Mountbarrow House 12 Elizabeth Street London SW1W 9RB Contact page: https://www.haighousing.org.uk/contact-us/ Online contact form: ...
Wilson's Mariners' Homes
Charity Number: 221375 Address: 43 Newlands Park Grove, Scarborough Postcode: YO12 6PT Phone: 01723 379910 Summary: The charity provides almshouses for poor aged persons of good character being shipowners (having been nautical people), shipmates, ...
Bournemouth War Memorial Homes
Charity Number: 1162066 Contact: Tracy Poole Address: 12a Woodsford Green, Castle Lane West, Bournemouth Postcode: BH8 9TP Phone: 01202 302881 Website: www.bwmh.org.uk Email: estatemanager@bwmh.org.uk Summary: Bournemouth War Memorial Homes exists to ...
Grimsby Sailors and Fishers Charity
Charity Number: 500816 Contact: Judi Coultas Email: judi.gsfc@gmail.com Address: 1st Floor Rear of 23 Bargate, Grimsby, North East Lincolnshire Postcode: DN34 4SS Phone: 01472 347914 Summary: The charity provides housing accommodation for retired ...
(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);
})();