Merge branch 'main' of git.sr.ht:~stfn/newbarn
This commit is contained in:
commit
0aac927102
1
Gemfile
1
Gemfile
|
@ -5,4 +5,5 @@ gem "jekyll"
|
|||
group :jekyll_plugins do
|
||||
gem "jekyll-sitemap"
|
||||
gem "jekyll-minifier"
|
||||
gem "jekyll-toc"
|
||||
end
|
||||
|
|
53
Gemfile.lock
53
Gemfile.lock
|
@ -1,23 +1,27 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
addressable (2.8.1)
|
||||
addressable (2.8.6)
|
||||
public_suffix (>= 2.0.2, < 6.0)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.1.10)
|
||||
concurrent-ruby (1.2.3)
|
||||
cssminify2 (2.0.1)
|
||||
em-websocket (0.5.3)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0)
|
||||
eventmachine (1.2.7)
|
||||
execjs (2.8.1)
|
||||
ffi (1.15.5)
|
||||
execjs (2.9.1)
|
||||
ffi (1.16.3)
|
||||
forwardable-extended (2.6.0)
|
||||
google-protobuf (4.26.1-arm64-darwin)
|
||||
rake (>= 13)
|
||||
google-protobuf (4.26.1-x86_64-linux)
|
||||
rake (>= 13)
|
||||
htmlcompressor (0.4.0)
|
||||
http_parser.rb (0.8.0)
|
||||
i18n (1.12.0)
|
||||
i18n (1.14.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (4.3.1)
|
||||
jekyll (4.3.3)
|
||||
addressable (~> 2.4)
|
||||
colorator (~> 1.0)
|
||||
em-websocket (~> 0.5)
|
||||
|
@ -39,41 +43,53 @@ GEM
|
|||
jekyll (>= 3.5)
|
||||
json-minify (~> 0.0.3)
|
||||
uglifier (~> 4.1)
|
||||
jekyll-sass-converter (2.2.0)
|
||||
sassc (> 2.0.1, < 3.0)
|
||||
jekyll-sass-converter (3.0.0)
|
||||
sass-embedded (~> 1.54)
|
||||
jekyll-sitemap (1.4.0)
|
||||
jekyll (>= 3.7, < 5.0)
|
||||
jekyll-toc (0.18.0)
|
||||
jekyll (>= 3.9)
|
||||
nokogiri (~> 1.12)
|
||||
jekyll-watch (2.2.1)
|
||||
listen (~> 3.0)
|
||||
json (2.6.2)
|
||||
json (2.7.2)
|
||||
json-minify (0.0.3)
|
||||
json (> 0)
|
||||
kramdown (2.4.0)
|
||||
rexml
|
||||
kramdown-parser-gfm (1.1.0)
|
||||
kramdown (~> 2.0)
|
||||
liquid (4.0.3)
|
||||
listen (3.7.1)
|
||||
liquid (4.0.4)
|
||||
listen (3.9.0)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
mercenary (0.4.0)
|
||||
nokogiri (1.16.5-arm64-darwin)
|
||||
racc (~> 1.4)
|
||||
nokogiri (1.16.5-x86_64-linux)
|
||||
racc (~> 1.4)
|
||||
pathutil (0.16.2)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (5.0.0)
|
||||
public_suffix (5.0.5)
|
||||
racc (1.7.3)
|
||||
rake (13.2.1)
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.10.1)
|
||||
ffi (~> 1.0)
|
||||
rexml (3.2.5)
|
||||
rouge (4.0.0)
|
||||
rexml (3.2.8)
|
||||
strscan (>= 3.0.9)
|
||||
rouge (4.2.1)
|
||||
safe_yaml (1.0.5)
|
||||
sassc (2.4.0)
|
||||
ffi (~> 1.9)
|
||||
sass-embedded (1.77.1)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
rake (>= 13.0.0)
|
||||
strscan (3.1.0)
|
||||
terminal-table (3.0.2)
|
||||
unicode-display_width (>= 1.1.1, < 3)
|
||||
uglifier (4.2.0)
|
||||
execjs (>= 0.3.0, < 3)
|
||||
unicode-display_width (2.3.0)
|
||||
webrick (1.7.0)
|
||||
unicode-display_width (2.5.0)
|
||||
webrick (1.8.1)
|
||||
|
||||
PLATFORMS
|
||||
arm64-darwin-21
|
||||
|
@ -83,6 +99,7 @@ DEPENDENCIES
|
|||
jekyll
|
||||
jekyll-minifier
|
||||
jekyll-sitemap
|
||||
jekyll-toc
|
||||
|
||||
BUNDLED WITH
|
||||
2.4.22
|
||||
|
|
|
@ -3,6 +3,7 @@ url: "https://newbarnltd.co.uk"
|
|||
plugins:
|
||||
- jekyll-sitemap
|
||||
- jekyll-minifier
|
||||
- jekyll-toc
|
||||
|
||||
collections:
|
||||
pages:
|
||||
|
@ -24,4 +25,4 @@ exclude:
|
|||
- vendor
|
||||
|
||||
sass:
|
||||
style: compressed
|
||||
style: compressed
|
||||
|
|
|
@ -84,6 +84,11 @@
|
|||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="sidebar content">
|
||||
{% if page.toc %}
|
||||
<div class="widget">
|
||||
{% toc %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="widget">
|
||||
<script type="text/javascript"
|
||||
src="https://www.cqc.org.uk/sites/all/modules/custom/cqc_widget/widget.js?data-id=1-533126912&data-host=www.cqc.org.uk"></script>
|
||||
|
|
|
@ -7,6 +7,5 @@ layout: default
|
|||
{{ page.class }}
|
||||
">
|
||||
<h1><span>{{ page.header_text }}</span></h1>
|
||||
<hr />
|
||||
{{ content }}
|
||||
</div>
|
|
@ -5,6 +5,7 @@ top_links_name: Our Staff
|
|||
top_links_order: 4
|
||||
header_text: Our Staff
|
||||
class: staff
|
||||
toc: true
|
||||
---
|
||||
|
||||
### **Lynn Collins**
|
||||
|
@ -79,12 +80,11 @@ I am a keen learner and have achieved the following qualifications which support
|
|||
|
||||
---
|
||||
|
||||
## **Dave Anderson**
|
||||
### **Dave Anderson**
|
||||
|
||||
_Senior Maintenance Officer_
|
||||
|
||||
![Photo of Dave Anderson](/img/dave-anderson.jpg)
|
||||
|
||||
I have worked with Newbarn for eight years. I have always worked in the construction industry. My chosen trade was initially as a plasterer although I progressed and worked for a few large construction companies on a management level previous to this role.
|
||||
|
||||
I've also previously owned my own building business. My role in Newbarn involves coordinating and prioritising work and repairs on our housing stock, booking and liaising with contractors, and looking after the welfare and development of my maintenance staff.
|
||||
|
@ -95,3 +95,41 @@ I love my job, especially the variety it brings. I have a sense of pride over my
|
|||
|
||||
- 1987 City and Guilds in general construction
|
||||
- 2006 CITB Health and Safety Management
|
||||
|
||||
---
|
||||
|
||||
### **Dan Petricca**
|
||||
|
||||
_Team Lead_
|
||||
|
||||
![Photo of Dan Patricca](/img/dan-petricca.jpg)
|
||||
|
||||
I started working for Newbarn in January 2021, initially as a Garden Project Coordinator. In this role I enjoyed working with the tenants to create a wildlife-friendly garden and growing our own fruit and veg. We achieved a level 4 award at North West In Bloom.
|
||||
|
||||
I also ran creative sessions at our Wellbeing Hub at The Landings. From there, I moved into support work, and enjoyed the challenge of providing individualised, person-centred support to our tenants and service users. I'm now in a Team Lead role, working closely with our team of dedicated, caring support workers. I'm currently working towards my Health and Social Care qualification.
|
||||
|
||||
---
|
||||
|
||||
### **Nicole Adair**
|
||||
|
||||
_Team Lead_
|
||||
|
||||
![Photo of Nicole Adair](/img/nicole-adair.jpg)
|
||||
|
||||
I joined Newbarn Ltd in 2021 where I began my journey as a Team Administrator before undergoing health and social care training to become a Support Worker, then Senior Support Worker.
|
||||
|
||||
I have since secured a post of Team Lead (my current role) and I am working towards achieving an NVQ in Adult Care Leadership. My role includes overseeing the support of individuals in our supported living projects, working closely with the Project Lead, Registered Manager and my fellow Team Lead to deliver high quality support to our tenants and service users.
|
||||
|
||||
We have an amazing team which I am very fortunate to be a part of.
|
||||
|
||||
---
|
||||
|
||||
### **Jack Fender**
|
||||
|
||||
_Acting Registered Manager_
|
||||
|
||||
![Photo of Jack Fender](/img/jack-fender.jpg)
|
||||
|
||||
I Joined Newbarn in November 2023 and have been in the Health and Social Care sector for around 15 years. My background is predominantly in Autism and learning disabilities but I have worked with people with a range of different needs and challenges and I love what I do. I have worked in many different settings from people's own homes to residential, supported living and outreach.
|
||||
|
||||
I am passionate about person-centred support and inclusivity for the people we support in the wider community and I am looking forward to doing this going forward with Newbarn and their tenants.
|
||||
|
|
BIN
img/dan-petricca.jpg
Normal file
BIN
img/dan-petricca.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 3 KiB |
BIN
img/jack-fender.jpg
Normal file
BIN
img/jack-fender.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
img/nicole-adair.jpg
Normal file
BIN
img/nicole-adair.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in a new issue