Change the home page layout

This commit is contained in:
Sameer Rahmani 2021-09-13 22:09:10 +01:00
parent b005a8cbad
commit 8fa3c59fe7
4 changed files with 49 additions and 5 deletions

View File

@ -37,7 +37,7 @@ params:
env: production
title: Serene Programming Language
description: "Serene - Another Lisp to be born"
author: ["Sameer Rahmani <lxsameer@gnu.org>"]
author: ["lxsameer <lxsameer@gnu.org>"]
images: "/images/serene.png"
ShowReadingTime: true
@ -55,7 +55,7 @@ params:
safari_pinned_tab: "/images/serene_32.png"
label:
text: "Serene"
text: "Serene lang"
icon: /images/serene.png
iconHeight: 32
@ -75,9 +75,18 @@ params:
# home-info mode
homeInfoParams:
Title: "Serene programming language is..."
Content: >-
Yet another free, modern and functional lisp.
Title: Serene programming language is...
Content: >
Yet another free, modern and functional lisp.
# What I cannot create, I do not understand
-- Richard Feynman
socialIcons:
- name: youtube

4
content/home.md Normal file
View File

@ -0,0 +1,4 @@
---
---
> hnthnt

View File

@ -0,0 +1,12 @@
---
title: "How to build a compiler with LLVM and MLIR series"
date: 2021-08-15T23:46:46+01:00
draft: false
---
I have decided to make a video series as a guide and walk through to Serene's code base. This way
any one who is interested in Serene but never done language development will have an easier time to
get started with Serene and also it will serve as a historical documentary for some of the decisions
and implementations that we make through out the development process. The video series in accessible
via my [Youtube channel](https://www.youtube.com/c/lxsameer) and
[How to build a compiler with LLVM and MLIR](https://www.youtube.com/playlist?list=PLlONLmJCfHTo9WYfsoQvwjsa5ZB6hjOG5)
playlist. Looking forward to your feedback. ;)

View File

@ -0,0 +1,19 @@
{{- with $.Site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
<h2>What I cannot create, I do not understand</h2>
<p>-- Richard Feynman</p>
</header>
<section class="entry-content">
<p>Serene language is a modern lisp and it is to be born. It started out of the curiosity of the author
and his journey through computer science and mathematics. We are at early stages of the development
process and there is a long way to go. If you're interested, contact us by joining our mailing list and
checkout the git repository. Also, we document our progress in development via some video tutorials and
code walkthrough that can be a good guide for the developers who want to join the team. You can find
the videos on <a href="https://www.youtube.com/c/lxsameer">here</a>.</p>
</section>
<footer class="entry-footer">
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
</footer>
</article>
{{- end}}