File tree Expand file tree Collapse file tree 4 files changed +33
-2
lines changed
manage-vaccinations-in-schools Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 4141 ] },
4242 { title : " Vaccinations" , services : [
4343 " Book a vaccination" ,
44+ " Manage vaccinations in schools" ,
4445 " Manage your appointments" ,
4546 " Record a vaccination" ,
4647 " Select people for invitation"
Original file line number Diff line number Diff line change 1+ ---
2+ layout : collection
3+ title : Manage vaccinations in schools
4+ description : A service for managing and recording school-age vaccinations
5+ area : Vaccinations
6+ pagination :
7+ data : collections.manage-vaccinations-in-schools
8+ reverse : true
9+ size : 50
10+ aside :
11+ title : Prototype
12+ content : |
13+ [View the prototype](http://prototype.mavistesting.com) for this service. Use the password `mavis` to access.
14+ related :
15+ items :
16+ - text : Prototype code repository
17+ href : https://github.com/nhsuk/manage-vaccinations-in-schools-prototype
18+ - text : Service guidance
19+ href : https://guide.manage-vaccinations-in-schools.nhs.uk
20+ permalink : " manage-vaccinations-in-schools/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber + 1 }}{% endif %}/"
21+ ---
Original file line number Diff line number Diff line change 1+ {
2+ "eleventyNavigation" : {
3+ "parent" : " Manage vaccinations in schools"
4+ }
5+ }
Original file line number Diff line number Diff line change @@ -78,15 +78,19 @@ module.exports = function (eleventyConfig) {
7878 // })
7979
8080 // Vaccination collections
81- eleventyConfig . addCollection ( 'book-a-vaccination' , collection => {
81+ eleventyConfig . addCollection ( 'book-a-vaccination' , collection => {
8282 return collection . getFilteredByGlob ( 'app/posts/book-a-vaccination/**/*.md' )
8383 } )
8484
85+ eleventyConfig . addCollection ( 'manage-vaccinations-in-schools' , collection => {
86+ return collection . getFilteredByGlob ( 'app/posts/manage-vaccinations-in-schools/**/*.md' )
87+ } )
88+
8589 eleventyConfig . addCollection ( 'manage-your-appointments' , collection => {
8690 return collection . getFilteredByGlob ( 'app/posts/manage-your-appointments/**/*.md' )
8791 } )
8892
89- eleventyConfig . addCollection ( 'record-a-vaccination' , collection => {
93+ eleventyConfig . addCollection ( 'record-a-vaccination' , collection => {
9094 return collection . getFilteredByGlob ( 'app/posts/record-a-vaccination/**/*.md' )
9195 } )
9296
You can’t perform that action at this time.
0 commit comments