48 lines
758 B
Markdown
48 lines
758 B
Markdown
+++
|
|
title = "Self-Hosting"
|
|
description = "Meine kleine aber feine Infrastruktur"
|
|
weight = 1
|
|
template = "page.html"
|
|
|
|
[taxonomies]
|
|
tags = ["meta"]
|
|
|
|
[extra]
|
|
local_image = "img/Raspberry_Pi_Logo.svg"
|
|
+++
|
|
|
|
|
|
|
|
|
|
#### [View Source](https://github.com/welpo/tabi-start){.centered-text}
|
|
|
|
## Features showcase
|
|
|
|
Here's what you can do with project pages:
|
|
|
|
- Add project descriptions
|
|
- Include code snippets
|
|
- Tag your projects
|
|
- Add images and media
|
|
- Link to external resources
|
|
|
|
## Sample Code
|
|
|
|
Here's a simple "Hello, World!" in different languages:
|
|
|
|
```python
|
|
print("Hello, World!")
|
|
```
|
|
|
|
```javascript
|
|
console.log("Hello, World!");
|
|
```
|
|
|
|
```rust
|
|
fn main() {
|
|
println!("Hello, World!");
|
|
}
|
|
```
|
|
|
|
Feel free to delete this demo project when you're ready to add your own!
|