blob: 01a76244139dab9cf5f76bdcbc687a80421bd53e [file] [log] [blame]
Matteo Scandolo667334f2017-02-26 10:58:08 -08001angular.module('app')
2 .constant('StyleConfig', {
3 projectName: '{{ gui_project_name }}',
4 favicon: '{{ gui_favicon }}',
5 background: '{{ gui_background }}',
6 payoff: '{{ gui_payoff }}',
7 logo: '{{ gui_logo }}',
8 routes: [
9 {% for route in gui_routes %}
10 {
11 label: '{{ route.label }}',
12 state: '{{ route.state }}',
13 {% if route.parent is defined %}
14 parent: '{{ route.parent }}'
15 {% endif %}
16 },
17 {% endfor %}
18 ]
19});