diff --git a/content/_data/works/aspnet.md b/content/_data/works/aspnet-core.md similarity index 100% rename from content/_data/works/aspnet.md rename to content/_data/works/aspnet-core.md diff --git a/content/_data/works/springboot.md b/content/_data/works/spring-boot.md similarity index 100% rename from content/_data/works/springboot.md rename to content/_data/works/spring-boot.md diff --git a/data/works.yaml b/data/works.yaml index 11f8cde..512c3d5 100644 --- a/data/works.yaml +++ b/data/works.yaml @@ -1,36 +1,48 @@ -realworld: - - name: aspnet - title: ASP.NET Core Realworld - repo: adr1enbe4udou1n/aspnetcore-realworld-example-app +- name: realworld + title: Conduit Apps Collection + description: true + projects: + - name: aspnet-core + title: ASP.NET Core Realworld + repo: adr1enbe4udou1n/aspnetcore-realworld-example-app + demo: https://aspnetrealworld.okami101.io/api - - name: springboot - title: Spring Boot Realworld - repo: adr1enbe4udou1n/spring-boot-realworld-example-app + - name: spring-boot + title: Spring Boot Realworld + repo: adr1enbe4udou1n/spring-boot-realworld-example-app + demo: https://springbootrealworld.okami101.io/api - - name: laravel - title: Laravel Realworld - repo: adr1enbe4udou1n/laravel-realworld-example-app + - name: laravel + title: Laravel Realworld + repo: adr1enbe4udou1n/laravel-realworld-example-app + demo: https://laravelrealworld.okami101.io/api - - name: symfony - title: Symfony Realworld - repo: adr1enbe4udou1n/symfony-realworld-example-app + - name: symfony + title: Symfony Realworld + repo: adr1enbe4udou1n/symfony-realworld-example-app + demo: https://symfonyrealworld.okami101.io/api - - name: nestjs - title: NestJS Realworld - repo: adr1enbe4udou1n/nestjs-realworld-example-app + - name: nestjs + title: NestJS Realworld + repo: adr1enbe4udou1n/nestjs-realworld-example-app + demo: https://nestjsrealworld.okami101.io/api - - name: fastapi - title: FastAPI Realworld - repo: adr1enbe4udou1n/fastapi-realworld-example-app + - name: fastapi + title: FastAPI Realworld + repo: adr1enbe4udou1n/fastapi-realworld-example-app + demo: https://fastapirealworld.okami101.io/api -others: - - name: vuetify-admin - title: Vuetify Admin - repo: okami101/vuetify-admin - demo: https://va-demo.okami101.io/ - docs: https://www.okami101.io/vuetify-admin +- name: others + title: Other projects + description: false + projects: + - name: vuetify-admin + title: Vuetify Admin + repo: okami101/vuetify-admin + demo: https://va-demo.okami101.io/ + docs: https://www.okami101.io/vuetify-admin - - name: laravel-rad-stack - title: Laravel RAD Stack - repo: adr1enbe4udou1n/laravel-rad-stack - demo: https://laravel-rad-stack.okami101.io/ + - name: laravel-rad-stack + title: Laravel RAD Stack + repo: adr1enbe4udou1n/laravel-rad-stack + demo: https://laravel-rad-stack.okami101.io/ diff --git a/layouts/works/single.html b/layouts/works/single.html index 7055d2f..0b30491 100644 --- a/layouts/works/single.html +++ b/layouts/works/single.html @@ -6,49 +6,20 @@ {{ .Content | emojify }} + {{ range $.Site.Data.works }}

- Conduit Apps Collection + {{ .title }}

+ {{ if .description }}
{{ readFile (print "_data/works/realworld.md") | markdownify }}
+ {{ end }}
- {{ range $.Site.Data.works.realworld }} -
- -
- {{ readFile (print "_data/works/" .name ".md") | markdownify }} -
- -
- {{ end }} -
-
-
-

- Others projects -

- -
- {{ range $.Site.Data.works.others }} + {{ range .projects }}
+ {{ end }} {{ end }} \ No newline at end of file