blob: 529ad73e82efb5fc9cee59da19ad953c3f828818 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | - content_for :page_header_title, 'Erreur serveur'
.page_content
  .container-fluid
    .row
      .col-lg-12
        .alert.alert-danger
          - if I18n.locale == :fr
            p
              strong = "Désolé, une erreur est survenue."
            p = "Vous pouvez néanmoins continuer à utiliser l'application."
          - else
            p
              strong = "We're sorry, but something went wrong."
            p = "You can still continue the use the IBOO application. Thank you for understanding."
 |