Main page for projects list
parent
5d991051a2
commit
a69ed665da
@ -1,11 +1,19 @@
|
||||
---
|
||||
title: List
|
||||
description: List of Ad5001's application.
|
||||
description: List of my released open source software with a brief presentation of them.
|
||||
---
|
||||
# List of applications
|
||||
|
||||
This page lists my realeased open source software with a brief presentation of them.
|
||||
This list has been built over the years, and is non-exhaustive.
|
||||
Older software can be found at my [legacy website](https://download.ad5001.eu).
|
||||
# Software list
|
||||
|
||||
|
||||
This page lists my released open source software with a brief presentation of them.
|
||||
This list has been built over the years, but is non-exhaustive.
|
||||
Older software can be found at my [legacy website](https://download.ad5001.eu).
|
||||
<br><br>
|
||||
<div class="grid">
|
||||
<div>
|
||||
<a role="button" class="primary" href="#appslist"><img src="/icons/lookup.svg" class="icon-as-text" alt=""/>Check them out</a>
|
||||
</div>
|
||||
<div>
|
||||
<a role="button" class="primary" href="https://download.ad5001.eu/en"><img src="/icons/open-external.svg" class="icon-as-text" alt=""/>Legacy website</a>
|
||||
</div>
|
||||
</div>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 817 KiB |
@ -1,8 +1,32 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "section1.html" (dict "Image" "/img/app0.png" "Content" .Content) }}
|
||||
<br><br><br><br><br>
|
||||
<br><br><br><br><br>
|
||||
<br><br><br><br><br>
|
||||
<br><br><br>
|
||||
{{ partial "section1.html" (dict "Image" "/img/app0.png" "Content" .Content) }}
|
||||
<div id="appslist"></div>
|
||||
<div class="grid">
|
||||
{{ $site := .Site }}
|
||||
{{ range .Site.Data.list }}
|
||||
{{ $index := . }}
|
||||
{{ $data := index $site.Data $site.Language.Lang }}
|
||||
{{ with index $data.apps $index }}
|
||||
<div class="padding-container">
|
||||
<div class="block-preview" style="background-image: url(/img/preview/{{ $index }}.png);">
|
||||
<div class="label">
|
||||
<h2 class="flex"> <img src="/icons/apps/{{ $index }}.png" class="icon-larger-text" alt=""/> {{ .name }}</h2>
|
||||
<p class="show-on-hover">{{ .description }}</p>
|
||||
<p class="show-on-hover">{{ i18n "status" }} {{ .status }}</p>
|
||||
<p class="flex show-on-hover">{{ i18n "worksOn" }}
|
||||
{{ range .platforms }}<img src="/icons/platform/{{ . }}.svg" alt="{{ . }}" title="{{ . }}" class="icon-larger-text" />{{ end }}
|
||||
</p>
|
||||
<p class="flex show-on-hover">{{ i18n "translated" }}
|
||||
{{ range .translated }}<img src="/icons/flag/{{ . }}.svg" alt="{{ . }}" title="{{ . }}" class="icon-larger-text" />{{ end }}
|
||||
</p>
|
||||
<div class="show-on-hover">
|
||||
<a href="/{{ $index }}" role="button" class="primary"><img src="/icons/lookup.svg" class="icon-as-text" alt=""/>{{ i18n "learnMore" }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.1 MiB After Width: | Height: | Size: 1010 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 389 KiB |
Loading…
Reference in New Issue