Skip to content

Commit ca0d8af

Browse files
feat(blog): remove all breadcrumbs (#304)
1 parent cde6bc4 commit ca0d8af

File tree

34 files changed

+4
-263
lines changed

34 files changed

+4
-263
lines changed

apps/blog/src/assets/i18n/en.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"posted_by": "Posted by {{name}}"
2020
},
2121
"becomeAuthorPage": {
22-
"breadcrumb": "Become an author",
2322
"title": "Become a part of angular.love!",
2423
"improvements": {
2524
"title": "Why is it worth it?",
@@ -47,7 +46,6 @@
4746
}
4847
},
4948
"aboutUsPage": {
50-
"breadcrumb": "About Us",
5149
"title": "About Us",
5250
"card": {
5351
"description1": "is a place for all Angular enthusiasts created to inspire and educate. It's a community of passionate people who share their knowledge and support others by providing them with the best practices and tips. This is the place where Angular lives.",

apps/blog/src/assets/i18n/pl.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"posted_by": "Opublikowane przez {{name}}"
2323
},
2424
"becomeAuthorPage": {
25-
"breadcrumb": "Zostań autorem",
2625
"title": "Zostań częścią angular.love!",
2726
"improvements": {
2827
"title": "Dlaczego warto?",
@@ -50,7 +49,6 @@
5049
}
5150
},
5251
"aboutUsPage": {
53-
"breadcrumb": "O nas",
5452
"title": "O nas",
5553
"card": {
5654
"description1": "to miejsce dla wszystkich entuzjastów Angulara, stworzone, aby inspirować i edukować. To społeczność pełna pasji ludzi, którzy dzielą się swoją wiedzą i wspierają innych, dostarczając im najlepszych praktyk i wskazówek. To miejsce, w którym Angular żyje.",

libs/blog/about-us/feature-about-us/src/lib/feature-about-us/feature-about-us.component.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<ng-container *transloco="let t; read: 'aboutUsPage'">
2-
<al-breadcrumb [pageName]="t('breadcrumb')" />
3-
4-
<h2 class="mb-8 text-[40px] font-bold">
2+
<h2 class="py-4 text-[40px] font-bold">
53
{{ t('title') }}
64
</h2>
75

libs/blog/about-us/feature-about-us/src/lib/feature-about-us/feature-about-us.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { TranslocoDirective, TranslocoPipe } from '@jsverse/transloco';
1010
import { AuthorListStore } from '@angular-love/blog/authors/data-access';
1111
import { AuthorCardComponent } from '@angular-love/blog/authors/ui-author-card';
1212
import { NewsletterComponent } from '@angular-love/blog/newsletter';
13-
import { BreadcrumbComponent } from '@angular-love/blog/shared/ui-breadcrumb';
1413
import {
1514
CardComponent,
1615
GradientCardDirective,
@@ -23,7 +22,6 @@ import { SocialMediaIconsComponent } from '@angular-love/blog/shared/ui-social-m
2322
standalone: true,
2423
imports: [
2524
CardComponent,
26-
BreadcrumbComponent,
2725
NewsletterComponent,
2826
SocialMediaIconsComponent,
2927
GradientCardDirective,

libs/blog/articles/feature-article/src/lib/article-details-container/article-details-container.component.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<al-breadcrumb [pageName]="articleDetails()?.title ?? ''" />
2-
31
@if (isFetchArticleDetailsLoading()) {
42
<al-article-details-skeleton />
53
} @else if (articleDetails()) {

libs/blog/articles/feature-article/src/lib/article-details-container/article-details-container.component.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,14 @@ import {
66
} from '@angular/core';
77

88
import { ArticleDetailsStore } from '@angular-love/blog/articles/data-access';
9-
import { BreadcrumbComponent } from '@angular-love/blog/shared/ui-breadcrumb';
109

1110
import { ArticleDetailsSkeletonComponent } from '../article-details/article-details-skeleton.component';
1211
import { ArticleDetailsComponent } from '../article-details/article-details.component';
1312

1413
@Component({
1514
selector: 'al-article-details-container',
1615
standalone: true,
17-
imports: [
18-
ArticleDetailsSkeletonComponent,
19-
ArticleDetailsComponent,
20-
BreadcrumbComponent,
21-
],
16+
imports: [ArticleDetailsSkeletonComponent, ArticleDetailsComponent],
2217
templateUrl: './article-details-container.component.html',
2318
changeDetection: ChangeDetectionStrategy.OnPush,
2419
host: {

libs/blog/articles/feature-guides/src/lib/feature-guides/feature-guides.component.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<al-breadcrumb pageName="Angular Guides" />
2-
31
<h2 id="angular-guides-title" class="mb-8 text-4xl font-bold">
42
Angular Guides
53
</h2>

libs/blog/articles/feature-guides/src/lib/feature-guides/feature-guides.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
ArticleRegularCardSkeletonComponent,
1313
UiArticleCardComponent,
1414
} from '@angular-love/blog/articles/ui-article-card';
15-
import { BreadcrumbComponent } from '@angular-love/blog/shared/ui-breadcrumb';
1615
import {
1716
PageChangeEvent,
1817
PaginationComponent,
@@ -24,7 +23,6 @@ import { RepeatDirective } from '@angular-love/utils';
2423
selector: 'al-guides',
2524
standalone: true,
2625
imports: [
27-
BreadcrumbComponent,
2826
PaginationComponent,
2927
QueryPaginationDirective,
3028
UiArticleCardComponent,

libs/blog/articles/feature-latest-articles/src/lib/latest-articles-page/latest-articles-page.component.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<al-breadcrumb pageName="Latest articles" />
2-
31
<h2 id="latest-articles" class="mb-8 text-4xl font-bold">Latest articles</h2>
42

53
<section

libs/blog/articles/feature-latest-articles/src/lib/latest-articles-page/latest-articles-page.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
ArticleRegularCardSkeletonComponent,
1313
UiArticleCardComponent,
1414
} from '@angular-love/blog/articles/ui-article-card';
15-
import { BreadcrumbComponent } from '@angular-love/blog/shared/ui-breadcrumb';
1615
import {
1716
PageChangeEvent,
1817
PaginationComponent,
@@ -24,7 +23,6 @@ import { RepeatDirective } from '@angular-love/utils';
2423
selector: 'al-latest',
2524
standalone: true,
2625
imports: [
27-
BreadcrumbComponent,
2826
UiArticleCardComponent,
2927
PaginationComponent,
3028
QueryPaginationDirective,

0 commit comments

Comments
 (0)