2023-11-26 15:36:01 +01:00
|
|
|
---
|
|
|
|
image_path: "https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Test-Logo.svg/783px-Test-Logo.svg.png?20150906031702"
|
|
|
|
title: Testing layout
|
|
|
|
date: 2023-11-26
|
|
|
|
description: Testing the layout of the site.
|
|
|
|
project_link: none
|
|
|
|
---
|
|
|
|
|
|
|
|
### Heading Tags
|
|
|
|
|
|
|
|
# Heading 1
|
|
|
|
## Heading 2
|
|
|
|
### Heading 3
|
|
|
|
#### Heading 4
|
|
|
|
##### Heading 5
|
|
|
|
###### Heading 6
|
|
|
|
|
|
|
|
This is a paragraph tag. It's used for displaying text content.
|
|
|
|
|
|
|
|
[Click me to visit Example website!](https://www.example.com)
|
|
|
|
|
|
|
|
Unordered list
|
|
|
|
|
|
|
|
* Item 1
|
|
|
|
* Item 2
|
|
|
|
* Item 3
|
|
|
|
|
|
|
|
Ordered list
|
|
|
|
|
|
|
|
1. Item 1
|
|
|
|
2. Item 2
|
|
|
|
3. Item 3
|
|
|
|
|
|
|
|
|
|
|
|
> It's probably important that images look okay here by default as well:
|
|
|
|
|
|
|
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Test-Logo.svg/783px-Test-Logo.svg.png?20150906031702">
|
|
|
|
|
|
|
|
### Code Blocks
|
|
|
|
|
|
|
|
```python
|
|
|
|
def hello_world():
|
|
|
|
print("Hello World!")
|
|
|
|
```
|
|
|
|
|
|
|
|
```rust
|
|
|
|
fn main() {
|
|
|
|
println!("Hello World!");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
function helloWorld() {
|
|
|
|
console.log("Hello World!");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
def hello_world
|
|
|
|
puts "Hello World!"
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
```dockerfile
|
|
|
|
FROM rust
|
|
|
|
RUN cargo build --release
|
|
|
|
CMD ["./target/release/hello_world"]
|
|
|
|
```
|
2023-12-07 18:40:53 +01:00
|
|
|
|
|
|
|
```mermaid
|
|
|
|
graph TD;
|
|
|
|
A-->B;
|
|
|
|
A-->C;
|
|
|
|
B-->D;
|
|
|
|
C-->D;
|
|
|
|
```
|