1<!DOCTYPE html>
2<html class="no-js" lang="[% lang %]" xml:lang="[% lang %]">
3    <!-- crash.tt2 -->
4    <head>
5        <meta charset="UTF-8" />
6        <meta name="generator" content="Sympa [% version %]" />
7        <meta name="viewport" content="width=device-width, initial-scale=1.0">
8        <title> [% main_title %] - [% action %] </title>
9        [% TRY; PROCESS head_ui.tt2; CATCH; ''; END %]
10        [% TRY; PROCESS head_javascript.tt2; CATCH; ''; END %]
11    </head>
12    <body>
13        [% top_menu = 1 %]
14        <div id="top">
15            <a class="displayNone" name="top" href="#content-inner">[%|loc%]Skip to Content.[%END%]</a>
16        </div>
17        [% IF top_menu %]
18            [% TRY; PROCESS header.tt2; CATCH; ''; END %]
19        [% END %]
20
21        [%# Show loading notice only when javascript is enabled. ~%]
22        <div id="loading"></div>
23        [% TRY; PROCESS aside_menu.tt2; CATCH; ''; END %]
24
25        [% IF top_menu %]
26            [%~ IF not list ~%]
27                <main id="content-inner" class="row">
28            [%~ ELSE ~%]
29                <main id="content-inner" class="medium-9 columns">
30            [%~ END %]
31        [%~ ELSE ~%]
32            <main id="content-inner" class="medium-9 columns">
33        [%~ END ~%]
34
35                <a name="content-inner"></a>
36
37                [% IF not top_menu %]
38                    <h1>[% main_title %]</h1>
39                [% END %]
40                [% IF list %]
41                    [% TRY; PROCESS title.tt2; CATCH; ''; END %]
42                    [% IF list_title %]
43                        <p>
44                            <b>[%|loc%]Subject:[%END%]</b> [% list_title %]
45                            [% IF is_owner %]
46                                <a href="[% 'edit_list_request' | url_rel([list,'description']) %]">
47                                    <i class="fa fa-pencil-square fa-lg" title="[%|loc%](Edit)[%END%]"></i>
48                                </a>
49                            [% END %]
50                        </p>
51                    [% END %]
52                [% END %]
53
54                [% TRY; PROCESS nav.tt2; CATCH; ''; END %]
55
56                <h2>[%|loc%]Internal Server Error[%END%]</h2>
57                <p>[%|loc%]Sympa encountered an internal error.[%END%]</p>
58                <p>[%|loc%]Please contact the listmaster.[%END%]</p>
59
60                [% IF 1 %][%# Change if you don't want to display traceback. %]
61                   <p>[%|loc(error_message)%]Error: %1[%END%]</p>
62
63                   <h2>[%|loc%]Traceback[%END%]</h2>
64
65                   <pre>[% traceback %]</pre>
66                [% END %]
67
68                [% IF top_menu %]
69                    [% IF not list %][% END %]
70                [% END %]
71        </main><!-- End content-inner -->
72        <div class="displayNone"><a href="#top">[%|loc%]Top of Page[%END%]</a></div>
73        <div class="scroll-top-wrapper "></div>
74        [% TRY; PROCESS footer.tt2; CATCH; ''; END %]
75    </body>
76    <!-- end crash.tt2 -->
77</html>
78