diff --git a/.gitattributes b/.gitattributes index 9a48b31..7f68c74 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,60 @@ -* text=auto eol=lf +# ---- Standard: All textfiles normalize to LF also during checkout ---- +* text=auto eol=lf -*.png binary -*.jpg binary -*.svg text -*.ts text -*.html text -*.scss text -*.json text +# ---- Sourcecode / Build ---- +*.java text eol=lf +*.kt text eol=lf +*.kts text eol=lf +*.groovy text eol=lf +*.gradle text eol=lf +gradlew text eol=lf +# Windows wrapper keeps CRLF +gradlew.bat text eol=crlf + +# ---- Scripts ---- +*.sh text eol=lf +*.bash text eol=lf +*.cmd text eol=crlf +*.bat text eol=crlf +*.ps1 text eol=crlf + +# ---- Configuration / Resources ---- +*.properties text eol=lf +*.yml text eol=lf +*.yaml text eol=lf +*.xml text eol=lf +*.json text eol=lf +*.sql text eol=lf +*.conf text eol=lf +Dockerfile text eol=lf +*.dockerfile text eol=lf + +# ---- Document ---- +*.md text eol=lf +*.adoc text eol=lf +*.txt text eol=lf +*.csv text eol=lf +*.svg text eol=lf # svg ist Text + +# ---- binary files never convert ---- +*.jar binary +*.war binary +*.ear binary +*.class binary +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.pdf binary +*.zip binary +*.tar binary +*.gz binary +*.7z binary +*.ttf binary +*.woff binary +*.woff2 binary +*.so binary +*.dll binary +*.dylib binary +*.exe binary \ No newline at end of file diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 4320e95..75612ce 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -1,10 +1,12 @@ import { Routes } from '@angular/router'; import {AboutComponent} from './pages/about/about.component'; import {ProjectsComponent} from './pages/projects/projects.component'; +import {HobbiesComponent} from './pages/hobbies/hobbies.component'; export const routes: Routes = [ { path: '', component: AboutComponent }, { path: 'about', component: AboutComponent}, { path: 'projects', component: ProjectsComponent}, + { path: 'hobbies', component: HobbiesComponent}, ]; diff --git a/src/app/layout/topbar/topbar.component.html b/src/app/layout/topbar/topbar.component.html index d42c9eb..8245025 100644 --- a/src/app/layout/topbar/topbar.component.html +++ b/src/app/layout/topbar/topbar.component.html @@ -12,7 +12,7 @@ diff --git a/src/app/pages/hobbies/hobbies.component.html b/src/app/pages/hobbies/hobbies.component.html new file mode 100644 index 0000000..3e705ce --- /dev/null +++ b/src/app/pages/hobbies/hobbies.component.html @@ -0,0 +1,3 @@ +
project-details works!
diff --git a/src/app/pages/project-details/project-details.component.scss b/src/app/pages/project-details/project-details.component.scss deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/pages/project-details/project-details.component.ts b/src/app/pages/project-details/project-details.component.ts deleted file mode 100644 index 47934ab..0000000 --- a/src/app/pages/project-details/project-details.component.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-project-details', - imports: [], - templateUrl: './project-details.component.html', - styleUrl: './project-details.component.scss', -}) -export class ProjectDetailsComponent { - -} diff --git a/src/app/pages/projects/projects.component.html b/src/app/pages/projects/projects.component.html index 7fb276e..ddcf4ce 100644 --- a/src/app/pages/projects/projects.component.html +++ b/src/app/pages/projects/projects.component.html @@ -1 +1,6 @@ -Working in progress!
+Work in progress…
+