From 36dfa776f285e057eddf28c1949b9d0b3b88c02e Mon Sep 17 00:00:00 2001 From: lucperkins Date: Mon, 9 Mar 2020 16:17:52 -0700 Subject: [PATCH] Update aesthetic of blog landing page Signed-off-by: lucperkins --- content/blog/2018-12-18-grpc-dotnet-build.md | 4 ++-- layouts/partials/blog/posts.html | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/content/blog/2018-12-18-grpc-dotnet-build.md b/content/blog/2018-12-18-grpc-dotnet-build.md index aebfdcc..5012b3f 100644 --- a/content/blog/2018-12-18-grpc-dotnet-build.md +++ b/content/blog/2018-12-18-grpc-dotnet-build.md @@ -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 Grpc.Tools NuGet package, now available from Nuget.org. + + 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 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 sources in a .NET C# project. - - ## A Walkthrough In this blog post, we'll walk through the simplest and probably the most common diff --git a/layouts/partials/blog/posts.html b/layouts/partials/blog/posts.html index 0d4dafd..a5dc5db 100644 --- a/layouts/partials/blog/posts.html +++ b/layouts/partials/blog/posts.html @@ -1,13 +1,14 @@ {{ $posts := where site.RegularPages "Section" "blog" }} +{{ $max := 200 }}
-
+
{{ range $posts }} {{ $date := dateFormat "January 2, 2006" .Date }}