Update aesthetic of blog landing page

Signed-off-by: lucperkins <lucperkins@gmail.com>
This commit is contained in:
lucperkins 2020-03-09 16:17:52 -07:00
parent d2ad837b3b
commit 36dfa776f2
2 changed files with 5 additions and 4 deletions

View File

@ -14,6 +14,8 @@ to introduce integrated compilation of Protocol Buffer and gRPC service
`.proto` files in .NET C# projects starting with the version 1.17 of the `.proto` files in .NET C# projects starting with the version 1.17 of the
Grpc.Tools NuGet package, now available from Nuget.org. Grpc.Tools NuGet package, now available from Nuget.org.
<!--more-->
You no longer need to use hand-written scripts to generate code from `.proto` You no longer need to use hand-written scripts to generate code from `.proto`
files: The .NET build magic handles this for you. The integrated tools locate files: The .NET build magic handles this for you. The integrated tools locate
the proto compiler and gRPC plugin, standard Protocol Buffer imports, and track the proto compiler and gRPC plugin, standard Protocol Buffer imports, and track
@ -22,8 +24,6 @@ source files are never out of date, at the same time keeping regeneration to
the minimum required. In essence, `.proto` files are treated as first-class the minimum required. In essence, `.proto` files are treated as first-class
sources in a .NET C# project. sources in a .NET C# project.
<!--more-->
## A Walkthrough ## A Walkthrough
In this blog post, we'll walk through the simplest and probably the most common In this blog post, we'll walk through the simplest and probably the most common

View File

@ -1,13 +1,14 @@
{{ $posts := where site.RegularPages "Section" "blog" }} {{ $posts := where site.RegularPages "Section" "blog" }}
{{ $max := 200 }}
<section class="section"> <section class="section">
<div class="container"> <div class="container">
<div class="columns is-multiline"> <div class="columns is-multiline is-variable is-4">
{{ range $posts }} {{ range $posts }}
{{ $date := dateFormat "January 2, 2006" .Date }} {{ $date := dateFormat "January 2, 2006" .Date }}
<div class="column is-one-third"> <div class="column is-one-third">
<div class="card"> <div class="card">
<div class="card-content"> <div class="card-content">
<p class="title is-size-4 is-sizee-5-mobile has-text-primary has-text-weight-medium is-spaced"> <p class="title is-size-4 is-sizee-5-mobile has-text-primary has-text-weight-bold is-spaced">
<a href="{{ .RelPermalink }}"> <a href="{{ .RelPermalink }}">
{{ .Title }} {{ .Title }}
</a> </a>