blob: d9833a02a43180483065262540c3e15b2f7037f6 [file] [log] [blame]
Matteo Scandolo35113f72017-08-08 13:05:25 -07001
2{#
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16#}
17
Scott Baker9d1b2c12017-10-25 16:52:52 -070018<html>
19<body style="background-color:{{ background_color }};">
20<font color="{{ foreground_color }}">
Matteo Scandolo35113f72017-08-08 13:05:25 -070021
Scott Baker9d1b2c12017-10-25 16:52:52 -070022<h1>ExampleService</h1>
Scott Baker619de672016-06-20 12:49:38 -070023
Scott Baker9d1b2c12017-10-25 16:52:52 -070024<ul>
25<li>Service Message: "{{ service_message }}"</li>
26<li>Tenant Message: "{{ tenant_message }}"</li>
27</ul>
28
29{% if images %}
30<h2>Some images</h2>
31{% for image in images %}
32<img name="{{ image.name }}" href="{{ image.url }}">
33{% endfor %}
34{% endif %}
35
36</font>
37
38</body>
39</html>