Skip to content

Commit

Permalink
Complete landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamRagstad committed Oct 20, 2024
1 parent 8a55ee6 commit d2c80e9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
Empty file added .markdownlint.json
Empty file.
4 changes: 0 additions & 4 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ date = 2024-10-20T15:12:37+02:00
hideLogo = true
+++

# Lento Programming Language

Lento is a programming language designed for simplicity, readability, and maintainability. It is a statically typed, compiled language with a focus on performance and safety. Lento is designed to be easy to learn and use, with a syntax that is clean and easy to read.

<section class="default large">
<div class="container">
<div class="ui grid landing">
Expand Down
6 changes: 6 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'

[markup.asciidocExt]
safeMode = "unsafe"

[markup.goldmark.renderer]
unsafe = true
6 changes: 6 additions & 0 deletions layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
<head>
<meta charset="UTF-8">
<title>{{ block "title" . }}{{ .Title }}{{ end }}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Numans&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/Semantic-UI-CSS-master/semantic.min.css">
{{ $styles := resources.Get "scss/main.scss" | toCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $styles.Permalink }}">
Expand Down

0 comments on commit d2c80e9

Please sign in to comment.