File tree Expand file tree Collapse file tree 4 files changed +121
-0
lines changed
Expand file tree Collapse file tree 4 files changed +121
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 0.0.1
2+ date : 2025-06-12
3+ history:
Original file line number Diff line number Diff line change 1010- title : Checklist
1111 link : /safs/checklist
1212
13+ - title : Print
14+ link : /safs/print
15+
1316- title : Tags
1417 link : /tags/
1518
Original file line number Diff line number Diff line change 1+ < style >
2+ @font-face {
3+ font-family : "Frutiger W01" ;
4+ font-style : normal;
5+ src : url ("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2" ) format ('woff2' );
6+ }
7+
8+ table {
9+ border-collapse : collapse;
10+ width : 100% ;
11+ }
12+ tr {
13+ width : 100% ;
14+ }
15+ th , td {
16+ border : 1px solid # ddd ;
17+ padding : 8px ;
18+ width : 100% ;
19+ text-align : left
20+ }
21+
22+ # print-parent {
23+ width : 100% ;
24+ font-family : Frutiger W01;
25+ }
26+ </ style >
27+
28+ < div id ="print-parent ">
29+
30+ < h2 > NHS England: Solution Architecture Framework (SAF) </ h2 >
31+ < table style ="width:20%; ">
32+ < tr >
33+ < td style ="width:30%; ">
34+ Version
35+ </ td >
36+ < td style ="width:70%; ">
37+ v{{ site.data.changelog.changelog.version}}
38+ </ td >
39+ </ tr >
40+ < tr >
41+ < td style ="width:30%; ">
42+ Version Date
43+ </ td >
44+ < td style ="width:70%; ">
45+ {{ site.data.changelog.changelog.date}}
46+ </ td >
47+ </ tr >
48+ < tr >
49+ < td style ="width:30%; ">
50+ Name
51+ </ td >
52+ < td style ="width:70%; ">
53+ </ td >
54+ </ tr >
55+ < tr >
56+ < td style ="width:30%; ">
57+ Date
58+ </ td >
59+ < td style ="width:70%; ">
60+ </ td >
61+ </ tr >
62+ < tr >
63+ < td style ="width:30%; ">
64+ Project
65+ </ td >
66+ < td style ="width:70%; ">
67+ </ td >
68+ </ tr >
69+ </ table >
70+
71+ {% for saf_dimension in site.saf_dimensions %}
72+
73+ < h3 > {{saf_dimension.title}}</ h3 >
74+
75+
76+ < table >
77+ < tr >
78+ < th style ="width:5%; ">
79+ Complete
80+ </ th >
81+ < th style ="width:5%; ">
82+ Item
83+ </ th >
84+ < th >
85+ Description
86+ </ th >
87+ </ tr >
88+ {% for saf in site.safs %}
89+ {% if saf.dimension != saf_dimension.name %}
90+ {% continue %}
91+ {% endif %}
92+ < tr >
93+ < td style ="width:5%; ">
94+
95+ </ td >
96+ < td style ="width:5%; ">
97+ {{ saf.title }}
98+ </ td >
99+ < td >
100+
101+ {% include saf_content.html summary_only=true saf=saf %}
102+ </ td >
103+
104+ </ tr >
105+ {% endfor %}
106+ </ table >
107+
108+ {% endfor %}
109+ </ div >
Original file line number Diff line number Diff line change 1+ ---
2+ title : SAFs Checklist
3+ nav_order : 2.0
4+ ---
5+
6+ {% include safs_print.html %}
You can’t perform that action at this time.
0 commit comments