⬅️ **[[$-Tools|Tools]]**
***
# Snippet-Cheatsheet
### Page Template
```YAML
---
permalink: /technik/tool/Simplemind
title: "Simplemind"
description: Simplemind for Overview Notes
date: 2018-11-21 00:00:01
categories:
tags:
- Tool
excerpt: " "
header:
teaser: /assets/sources/Technik/Logos/Simplemind.jpg
---
```
### Link with Style
```Markdown
[TITEL](LINK){: .btn .btn--primary .btn--x-large}
```
### Link with a Picture
Title of the Link is the Picture.
```Markdown
[](https://www.apple.com/)
```
### Table for files
```HTML
<table>
<tr>
<th>Filename</th>
<th>Modified Time</th>
</tr>
{% for file in site.static_files %}
{% if file.path contains '/Merrill&Lynch/' %}
<tr>
<td><a href="{{ site.baseurl }}{{ file.path }}" target="_blank">{{ file.name }}</a></td>
<td>{{ file.modified_time }}</td>
</tr>
{% endif %}
{% endfor %}
</table>
```
### Figures
```HTML
<figure class="third ">
{% for file in site.static_files %}
{% if file.path contains '/2012-07-Cambridge' %}
<a href="{{ site.baseurl }}{{ file.path }}" title="{{ file.name }}">
<img src="{{ site.baseurl }}{{ file.path }}" alt="{{ file.name }}" />
</a>
{% endif %}
{% endfor %}
</figure>
```
##
***
Related:
- [[Jekyll - Blog Framework]]