pidgin/nest

f57c5d0a9038
Add a blog post announcing DigitalOceans 2022 sponsorship

Testing Done:
Ran `npm run hugo:server` and verified all of the links worked.

Reviewed at https://reviews.imfreedom.org/r/1862/
<!DOCTYPE html>
<html lang="{{ .Page.Language | default "en" }}" class="js csstransforms3d">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ hugo.Generator }}
{{ partial "meta.html" . }}
{{ partial "favicon.html" . }}
<title>{{ .Title }} :: {{ .Site.Title }}</title>
{{ $assetBusting := cond (hugo.IsProduction) "" (print "?" now.Unix) }}
<link href="{{ "css/nucleus.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
<link href="{{ "css/fontawesome-all.min.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
<link href="{{ "css/hybrid.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
<link href="{{ "css/perfect-scrollbar.min.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
<link href="{{ "css/auto-complete.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
<link href="{{ "css/theme.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
<link href="{{ "css/hugo-theme.css" | relURL }}{{ $assetBusting }}" rel="stylesheet">
{{ with .Site.Params.themeVariant }}
<link href="{{ (printf "css/theme-%s.css" .) | relURL }}{{ $assetBusting }}" rel="stylesheet">
{{ end }}
<script src="{{ "js/jquery-2.x.min.js"| relURL }}{{ $assetBusting }}"></script>
<style type="text/css">
:root #header + #content > #left > #rlblock_left{
display:none !important;
}
</style>
<script>
{{ if or .Params.disableInlineCopyToClipBoard .Site.Params.disableInlineCopyToClipBoard }}
var isCodeToClipboardEnabled = false
{{ else }}
var isCodeToClipboardEnabled = true
{{ end }}
</script>
{{ partial "custom-header.html" . }}
</head>
<body class="" data-url="{{ .RelPermalink }}">
{{ partial "menu.html" . }}
<section id="body">
<div id="overlay"></div>
<div class="padding highlightable">
{{ if not .IsHome }}
<div>
<div id="top-bar">
{{ if and (or .IsPage .IsSection) .Site.Params.editURL }}
{{ $File := .File }}
{{ $Site := .Site }}
{{ if .File }}
{{ if .File.Path }}
<div id="top-github-link">
<a
class="github-link"
title='{{ T "Edit-this-page" }}'
href="{{ $Site.Params.editURL }}{{ replace $File.Dir "\\" "/" }}{{ $File.LogicalName }}"
target="blank"
>
<i class="fas fa-code-branch"></i>
<span id="top-github-link-text">{{ T "Edit-this-page" }}</span>
</a>
</div>
{{ end }}
{{ end }}
{{ end }}
{{ $toc := (and (not .Params.disableToc) (not .Params.chapter)) }}
<div id="breadcrumbs" itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb">
<span id="sidebar-toggle-span">
<a href="#" id="sidebar-toggle" data-sidebar-toggle="">
<i class="fas fa-bars"></i>
</a>
</span>
{{ if $toc }}
<span id="toc-menu"><i class="fas fa-list-alt"></i></span>
{{ end }}
<span class="links">
{{ $showBreadcrumb := (and (not .Params.disableBreadcrumb) (not .Site.Params.disableBreadcrumb)) }}
{{ if $showBreadcrumb }}
{{ template "breadcrumb" dict "page" . "value" .Title }}
{{ else }}
{{ .Title }}
{{ end }}
</span>
</div>
{{ if $toc }}
<div class="progress">
<div class="wrapper">
{{ .TableOfContents }}
</div>
</div>
{{ end }}
</div>
</div>
{{ end }}
{{ if .Params.chapter }}
<div id="chapter">
{{ end }}
{{ if and (not .IsHome) (not .Params.chapter) }}
<h1>{{ .Title }}</h1>
{{ end }}
{{ if gt .WordCount 400 }}
{{ .TableOfContents }}
{{ end }}
<div id="body-inner">
{{/*** Templates ***/}}
{{ define "breadcrumb" }}
{{ $parent := .page.Parent }}
{{ if $parent }}
{{ $value := (printf "<a href='%s'>%s</a> > %s" $parent.RelPermalink $parent.Title .value) }}
{{ template "breadcrumb" dict "page" $parent "value" $value }}
{{ else }}
{{ .value | safeHTML }}
{{ end }}
{{ end }}