Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume DEWISME
CI
Commits
ae33e8fb
Commit
ae33e8fb
authored
Mar 19, 2025
by
Quentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(layout): begin add header
parent
c9ad8bfe
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
157 additions
and
1 deletion
+157
-1
app.component.html
angular/src/app/app.component.html
+1
-0
app.component.ts
angular/src/app/app.component.ts
+2
-1
header.component.html
angular/src/app/layouts/header/header.component.html
+120
-0
header.component.scss
angular/src/app/layouts/header/header.component.scss
+0
-0
header.component.spec.ts
angular/src/app/layouts/header/header.component.spec.ts
+23
-0
header.component.ts
angular/src/app/layouts/header/header.component.ts
+11
-0
No files found.
angular/src/app/app.component.html
View file @
ae33e8fb
<app-header></app-header>
<main
id=
"content"
>
<router-outlet></router-outlet>
</main>
angular/src/app/app.component.ts
View file @
ae33e8fb
import
{
Component
}
from
'@angular/core'
;
import
{
RouterOutlet
}
from
'@angular/router'
;
import
{
HeaderComponent
}
from
'./layouts/header/header.component'
;
@
Component
({
selector
:
'app-root'
,
imports
:
[
RouterOutlet
],
imports
:
[
RouterOutlet
,
HeaderComponent
],
templateUrl
:
'./app.component.html'
,
styleUrl
:
'./app.component.scss'
,
})
...
...
angular/src/app/layouts/header/header.component.html
0 → 100644
View file @
ae33e8fb
<header
role=
"banner"
class=
"fr-header"
>
<div
class=
"fr-header__body"
>
<div
class=
"fr-container"
>
<div
class=
"fr-header__body-row"
>
<div
class=
"fr-header__brand fr-enlarge-link"
>
<div
class=
"fr-header__brand-top"
>
<div
class=
"fr-header__brand-top"
>
<div
class=
"fr-header__logo"
>
<p
class=
"fr-logo"
>
Ministère
<br
/>
de l'Intérieur
</p>
</div>
</div>
<div
class=
"fr-header__service"
>
<a
href=
"/"
title=
"Accueil - [À MODIFIER - Nom du site / service] - Nom de l’entité (ministère, secrétariat d‘état, gouvernement)"
>
<p
class=
"fr-header__service-title"
>
Démocratie Participative
</p>
</a>
<p
class=
"fr-header__service-tagline"
>
democratie-participative.gouv.fr
</p>
</div>
<div
class=
"fr-header__navbar"
>
<button
class=
"fr-btn--menu fr-btn"
data-fr-opened=
"false"
aria-controls=
"modal-491"
aria-haspopup=
"menu"
id=
"button-492"
title=
"Menu"
>
Menu
</button>
</div>
</div>
</div>
<div
class=
"fr-header__tools"
>
<div
class=
"fr-header__tools-links"
>
<ul
class=
"fr-btns-group"
>
<!-- @if (isAuthenticated()) {-->
<!-- <li>-->
<!-- <a-->
<!-- class="fr-btn fr-icon-logout-box-r-line"-->
<!-- href="/redirect_uri?logout="-->
<!-- rel="nofollow"-->
<!-- >-->
<!-- Se déconnecter-->
<!-- </a>-->
<!-- </li>-->
<!-- <li>-->
<!-- <a class="fr-btn fr-icon-account-line" href="/account">-->
<!-- {{ userName }}-->
<!-- </a>-->
<!-- </li>-->
<!-- } @else {-->
<li>
<a
class=
"fr-btn fr-icon-lock-line"
href=
"/login"
rel=
"nofollow"
>
Se connecter
</a>
</li>
<li>
<a
class=
"fr-btn fr-icon-account-line"
href=
"#"
>
S’enregistrer
</a>
</li>
<!-- }-->
<!-- <li>-->
<!-- <a class="fr-btn fr-icon-shopping-cart-2-line" href="/basket">-->
<!-- Panier {{ basketSize() }}-->
<!-- </a>-->
<!-- </li>-->
</ul>
</div>
</div>
</div>
</div>
</div>
<div
class=
"fr-header__menu fr-modal"
id=
"modal-491"
aria-labelledby=
"button-492"
>
<div
class=
"fr-container"
>
<button
class=
"fr-btn--close fr-btn"
aria-controls=
"modal-491"
title=
"Fermer"
>
Fermer
</button>
<div
class=
"fr-header__menu-links"
></div>
<nav
class=
"fr-nav"
id=
"navigation-494"
role=
"navigation"
aria-label=
"Menu principal"
>
<ul
class=
"fr-nav__list"
>
<li
class=
"fr-nav__item"
>
<a
class=
"fr-nav__link"
href=
"/home"
target=
"_self"
>
Accueil
</a>
</li>
<!-- @if (isAuthenticated()) {-->
<!-- <li class="fr-nav__item">-->
<!-- <a class="fr-nav__link" href="/account" target="_self"-->
<!-- >Mon compte</a-->
<!-- >-->
<!-- </li>-->
<!-- }-->
</ul>
</nav>
</div>
</div>
</header>
angular/src/app/layouts/header/header.component.scss
0 → 100644
View file @
ae33e8fb
angular/src/app/layouts/header/header.component.spec.ts
0 → 100644
View file @
ae33e8fb
import
{
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
HeaderComponent
}
from
'./header.component'
;
describe
(
'HeaderComponent'
,
()
=>
{
let
component
:
HeaderComponent
;
let
fixture
:
ComponentFixture
<
HeaderComponent
>
;
beforeEach
(
async
()
=>
{
await
TestBed
.
configureTestingModule
({
imports
:
[
HeaderComponent
]
})
.
compileComponents
();
fixture
=
TestBed
.
createComponent
(
HeaderComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
angular/src/app/layouts/header/header.component.ts
0 → 100644
View file @
ae33e8fb
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-header'
,
imports
:
[],
templateUrl
:
'./header.component.html'
,
styleUrl
:
'./header.component.scss'
})
export
class
HeaderComponent
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment