]> git.xn--bdkaa.com Git - xn--bdkaa.com.git/commitdiff
Add understanding power
authorEvgenii Akentev <i@ak3n.com>
Tue, 5 Mar 2024 19:09:57 +0000 (23:09 +0400)
committerEvgenii Akentev <i@ak3n.com>
Sun, 10 Mar 2024 17:27:45 +0000 (21:27 +0400)
content/pages/books.md
themes/theme/layouts/_default/list.html
themes/theme/layouts/index.html
themes/theme/layouts/partials/subheader.html

index 7ad741169f040f24a81cb82dde0c92b759136caf..de396f3269b11f4f0242fc26c921dcca17ea0854 100644 (file)
@@ -6,6 +6,7 @@ Books I read. Bold titles that I enjoyed and recommend.
 
 ### 2024
 
+- **Understanding Power, by Noam Chomsky, John Schoeffel, Peter Mitchell**
 - **Zombies in Western Culture, by John Vervaeke, Christopher Mastropietro, Filip Miscevic**
 - **Котлован, Андрей Платонов**
 - Черный квадрат, Казимир Малевич
index ef459e5f00b5e10f75c5c6bb1c8a53d059aa0629..64ed7512c54af6e31c76f228fcf94c1e8e8562c7 100644 (file)
@@ -6,7 +6,7 @@
     <div class="pure-u-1 pure-u-lg-1-3"></div>
 
     <div class="pure-u-1 pure-u-lg-1-3">
-        <h1>{{ .Title }}</h1>
+        <h3>{{ .Title }}</h3>
         <section>
           <ul>
             {{ range .Data.Pages.ByPublishDate.Reverse }}
index d3a184cbfe9ed939c38488d2dfaaecfa3ea1d99e..0b13ef2f5a960937898fc1937ca6d71dd35bed45 100644 (file)
@@ -1,23 +1,23 @@
 {{ partial "header.html" . }}
 
-<div class="pure-g">
-    <div class="pure-u-1 pure-u-lg-1-5"></div>
+{{ partial "subheader.html" . }}
 
-    <div class="pure-u-1 pure-u-lg-3-5">
-        <div class="center">
-          <img class="avatar" src="/img/me_myself_and_i_tbilisi_2023.webp" alt="Me, Myself, and I, თბილისი 2023"/>
-          <p class="about">თბილისი, July, 2023</p>
-        </div>
+<div class="pure-g">
+    <div class="pure-u-1 pure-u-lg-1-3"></div>
 
-        <section id="info">
-          <ul class="center">
-            <li><a href="/posts">posts</a></li>
-            {{ range (where .Site.RegularPages.ByPublishDate.Reverse "Section" "pages") }}
-              <li><a href="{{ .Permalink }}">{{ .Title | lower }}</a></li>
+    <div class="pure-u-1 pure-u-lg-1-3">
+        <section>
+          <ul>
+            {{ range (where .Site.RegularPages.ByPublishDate.Reverse "Type" "in" .Site.Params.mainSections) }}
+              <div class="posts">
+                <div id=date class="date-time-title">
+                    <time>{{ .Date.Format (.Site.Params.dateform | default "02 Jan 06") }}</time>
+                </div>
+                <div class="date-time-title post">
+                  <a href="{{ .Permalink }}">{{ .Title }}</a>
+                </div>
+              </div>
             {{ end }}
-            <li><a href="https://git.ak3n.com">code</a></li>
-            <li><a href="/index.xml">rss</a></li>
-            <li><a href="mailto:i@ak3n.com">say hi</a></li>
           </ul>
         </section>
     </div>
index ef7445c3a06331a8ade298185da634c4ea46986b..ac7ace81a4208d387e5934f049b61c6deb4b78f1 100644 (file)
@@ -1,3 +1,13 @@
 <section id="page-title" class="center">
-    <h1><a href="/">¯\_(ツ)_/¯</a></h1>
+    <section id="info">
+      <ul class="center">
+        <li><a href="/">posts</a></li>
+        {{ range (where .Site.RegularPages.ByPublishDate.Reverse "Section" "pages") }}
+          <li><a href="{{ .Permalink }}">{{ .Title | lower }}</a></li>
+        {{ end }}
+        <li><a href="https://git.ak3n.com">code</a></li>
+        <li><a href="/index.xml">rss</a></li>
+        <li><a href="mailto:i@ak3n.com">say hi</a></li>
+      </ul>
+    </section>
 </section>