mirror of
https://github.com/ivabus/www
synced 2024-11-13 05:15:14 +03:00
Front matter and featured images
This commit is contained in:
parent
19f3806803
commit
379d4a4b24
|
@ -1,8 +1,10 @@
|
|||
---
|
||||
title: "Adding Some Flavor to Your Cup of tea"
|
||||
date: 2022-03-23
|
||||
date: 2023-05-02
|
||||
categories: [gui, package management]
|
||||
tags: [homebrew, gui, package management]
|
||||
draft: false
|
||||
featured_image: "/Images/techcrunch-gen-art.jpg"
|
||||
featured_image: "/Images/blog/add-some-flavor.jpg"
|
||||
---
|
||||
_A year ago, we brewed the first cup of tea. Now, it’s time to add some honey to the mix._
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ date: 2023-01-23
|
|||
categories: [dev.diaries, open-source]
|
||||
tags: [open-source, homebrew, programming]
|
||||
draft: false
|
||||
featured_image: "/Images/techcrunch-gen-art.jpg"
|
||||
featured_image: "/Images/blog/finding-the-fun.jpg"
|
||||
---
|
||||
When building any kind of product it takes a little time before you figure out its shape. Famous games developer Sid Meier described this process as “finding the fun”. He would iterate compulsively on his ideas until those little changes in the little details would uncover something sufficiently new and engaging that he had the basis for a new game.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "dev.diary—tea is env++"
|
||||
date: 2023-01-31
|
||||
draft: false
|
||||
featured_image: "/Images/techcrunch-gen-art.jpg"
|
||||
featured_image: "/Images/blog/tea-is-env.jpg"
|
||||
---
|
||||
A few aspects of the shape of tea’s CLI have been bothering me.
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ date: 2022-03-23
|
|||
categories: [open-source, programming]
|
||||
tags: [programming, homebrew, install tea]
|
||||
draft: false
|
||||
featured_image: "/Images/techcrunch-gen-art.jpg"
|
||||
featured_image: "/Images/blog/something-new-is-brewing.jpg"
|
||||
---
|
||||
I created Homebrew nearly 13 years ago out of sheer necessity. I found the tooling available to developers at the time haphazard and difficult to tease into shape. After complaining about it at the pub one evening, I was met with an exasperated “Max, quit whining and do something about it”. So I did. (Thanks Jono).
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-9 pe-4 blog-list one-box">
|
||||
<h2 class="mb-5">Recent Posts</h2>
|
||||
<h2 class="mb-4" style="text-transform:lowercase;">Recent Posts</h2>
|
||||
<div class="row content-area">
|
||||
{{ range .Pages }}
|
||||
<div class="blog-col col-xl-4 col-lg-4 col-md-6 col-sm-12 mb-4">
|
||||
|
@ -32,9 +32,9 @@
|
|||
<div class="featured-image" style="background-image: url('{{ .Params.featured_image }}');"></div>
|
||||
{{ end }}
|
||||
<div class="p-4 pb-5">
|
||||
<a href="{{ .RelPermalink }}"><h3>{{ .Title }}</h3></a>
|
||||
<a href="{{ .RelPermalink }}"><h3 style="text-transform:lowercase;">{{ .Title }}</h3></a>
|
||||
<span class="grid-gray small">Published: {{ .Date.Format "02/01/2006" }}</span><br>
|
||||
<span class="grid-gray small">Categories: {{ range .Params.categories }}<a class="grid-gray" href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>, {{ end }}</span>
|
||||
<span class="grid-gray small">Categories: {{ range .Params.categories }}<a class="grid-gray cat-link" href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>, {{ end }}</span>
|
||||
<span class="preview-content small mt-2">{{ trim .Summary 5 | plainify }}</span>
|
||||
<a class="read-more" href="{{ .RelPermalink }}">Read More</a>
|
||||
</div>
|
||||
|
@ -132,6 +132,10 @@ p {
|
|||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
.cat-link:hover{
|
||||
color: #00ffd0;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div class="row">
|
||||
<div class="col-md-9 pe-xl-5 pe-lg-5 pe-md-5 pe-sm-2 pe-2">
|
||||
<div class="one-box">
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h1 style="text-transform:lowercase;">{{ .Title }}</h1>
|
||||
<p>Published: {{ .Date.Format "02/01/2006" }}</p>
|
||||
{{ .Content }}
|
||||
<a href="{{ "blog" | relURL }}">Back to blog</a>
|
||||
|
|
BIN
src/static/Images/blog/add-some-flavor.jpg
Normal file
BIN
src/static/Images/blog/add-some-flavor.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 242 KiB |
BIN
src/static/Images/blog/finding-the-fun.jpg
Normal file
BIN
src/static/Images/blog/finding-the-fun.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
src/static/Images/blog/something-new-is-brewing.jpg
Normal file
BIN
src/static/Images/blog/something-new-is-brewing.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
BIN
src/static/Images/blog/tea-is-env.jpg
Normal file
BIN
src/static/Images/blog/tea-is-env.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 188 KiB |
Loading…
Reference in a new issue