blob: 8821e9ec307e8f111f2580a18140646130ec9e69 (
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 404'
.page_content
  .container-fluid
    .row
      .col-lg-12
        .alert.alert-danger
          - if I18n.locale == :fr
            p
              strong = "Désolé, la page demandée n'existe pas."
            p = "Vous pouvez néanmoins continuer à utiliser l'application IBOO."
          - else
            p
              strong = "The page you were looking for doesn't exist."
            p = "You can still continue the use the IBOO application. Thank you for understanding."
 |