about summary refs log tree commit diff
path: root/users/fcuny
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-03 17:50:25 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-03 17:50:25 -0700
commita92df1fcec2d419f4352c56585f3cd1a871fc87c (patch)
tree2759700112ca2df450796447ef32a466b2077337 /users/fcuny
parentdelete some content (diff)
downloadworld-a92df1fcec2d419f4352c56585f3cd1a871fc87c.tar.gz
site: remove unnecessary elements
Diffstat (limited to 'users/fcuny')
-rw-r--r--users/fcuny/notes/config.toml8
-rw-r--r--users/fcuny/notes/layouts/_default/baseof.html1
-rw-r--r--users/fcuny/notes/layouts/index.atom.xml24
-rw-r--r--users/fcuny/notes/layouts/index.html16
-rw-r--r--users/fcuny/notes/layouts/partials/footer.html32
-rw-r--r--users/fcuny/notes/layouts/partials/head.html3
-rw-r--r--users/fcuny/notes/layouts/partials/header.html5
-rw-r--r--users/fcuny/notes/static/css/custom.css67
8 files changed, 40 insertions, 116 deletions
diff --git a/users/fcuny/notes/config.toml b/users/fcuny/notes/config.toml
index 6ee3e63..cb488ee 100644
--- a/users/fcuny/notes/config.toml
+++ b/users/fcuny/notes/config.toml
@@ -19,14 +19,6 @@ enableGitInfo = true
   notes = "/notes/:slug/"
   tags = "/tags/:slug/"
 
-[menu]
-  [[menu.main]]
-    identifier = "RSS"
-    name = "RSS"
-    title = "~/notes/feed"
-    url = "/feed.xml"
-    weight = 130
-
 [markup]
   [markup.tableOfContents]
     startLevel = 1
diff --git a/users/fcuny/notes/layouts/_default/baseof.html b/users/fcuny/notes/layouts/_default/baseof.html
index 410e2bc..0c72fb1 100644
--- a/users/fcuny/notes/layouts/_default/baseof.html
+++ b/users/fcuny/notes/layouts/_default/baseof.html
@@ -6,6 +6,5 @@
     <main>
      {{ block "main" . }}{{ end }}
     </main>
-    {{- partial "footer.html" . -}}
   </body>
 </html>
diff --git a/users/fcuny/notes/layouts/index.atom.xml b/users/fcuny/notes/layouts/index.atom.xml
deleted file mode 100644
index e4b014b..0000000
--- a/users/fcuny/notes/layouts/index.atom.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<feed xmlns="http://www.w3.org/2005/Atom">
-  <title>{{ .Site.Title }}</title>
-  <link href="{{ .Permalink }}feed.xml" rel="self"/>
-  <link href="{{ .Permalink }}"/>
-  <id>{{ .Permalink }}</id>{{ with .Site.Author.name }}
-  <author>
-    <name>{{.}}</name>{{ with $.Site.Author.email }}
-    <email>{{.}}</email>{{end}}
-  </author>{{end}}
-  <generator>Hugo -- gohugo.io</generator>
-  {{ range where (first 10 (where .Site.Pages "Section" "notes")) "Params.hidden" "ne" "true" }}
-  <entry>
-    {{ `<title type="html"><![CDATA[` | safeHTML }}{{ .Title }}]]></title>
-    <link href="{{ .Permalink }}"/>
-    <id>{{ .Permalink }}</id>{{ with .Site.Params.Author }}
-    <author>
-      <name>{{.}}</name>
-    </author>{{end}}
-    {{- $fmt := "2006-01-02T15:04:05-07:00" }}
-    <published>{{ .Date.Format $fmt | safeHTML }}</published>
-    {{ `<content type="html"><![CDATA[` | safeHTML }}{{ .Content }}]]></content>
-  </entry>
-  {{ end }}
-</feed>
diff --git a/users/fcuny/notes/layouts/index.html b/users/fcuny/notes/layouts/index.html
index a340d3d..8ddc67d 100644
--- a/users/fcuny/notes/layouts/index.html
+++ b/users/fcuny/notes/layouts/index.html
@@ -2,16 +2,18 @@
 
 <article>
 
-<h1>{{ .Site.Home.Title }}</h1>
+  A place to collect random notes.
 
-<p>This is my collection of notes.</p>
-
-  <h2>Notes</h2>
-  <ul>
+  <ul id="post-permalink">
   {{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
   {{ range $pages }}
-  {{- $fmt := "2006-01-02" }}
-  <li class="post-permalink"><span class="post-date" >{{ .Date.Format $fmt | safeHTML }}</span>, <a href="{{ .Permalink }}">{{ .Title }}</a></li>
+  <li>
+    <a href="{{ .Permalink }}">{{ .Title }}</a>
+    {{ range $idx, $tag := .Params.tags }}
+    <span id="meta_tags"><a href="/tags/{{ $tag | urlize }}/">{{ $tag }}</a></span>
+  {{ end }}
+  </li>
+
   {{ end }}
   </ul>
 
diff --git a/users/fcuny/notes/layouts/partials/footer.html b/users/fcuny/notes/layouts/partials/footer.html
deleted file mode 100644
index e2bf7ab..0000000
--- a/users/fcuny/notes/layouts/partials/footer.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<footer>
-  <a href="mailto:franck@fcuny.net" title="franck@fcuny.net">
-    <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-envelope-fill" viewBox="0 0 20 20">
-      <path d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555ZM0 4.697v7.104l5.803-3.558L0 4.697ZM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757Zm3.436-.586L16 11.801V4.697l-5.803 3.546Z"/>
-    </svg>
-  </a>
-
-  <a target="_blank" href="https://git.fcuny.net/fcuny" title="git.fcuny.net">
-    <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-git" viewBox="0 0 20 20">
-      <path d="M15.698 7.287 8.712.302a1.03 1.03 0 0 0-1.457 0l-1.45 1.45 1.84 1.84a1.223 1.223 0 0 1 1.55 1.56l1.773 1.774a1.224 1.224 0 0 1 1.267 2.025 1.226 1.226 0 0 1-2.002-1.334L8.58 5.963v4.353a1.226 1.226 0 1 1-1.008-.036V5.887a1.226 1.226 0 0 1-.666-1.608L5.093 2.465l-4.79 4.79a1.03 1.03 0 0 0 0 1.457l6.986 6.986a1.03 1.03 0 0 0 1.457 0l6.953-6.953a1.031 1.031 0 0 0 0-1.457"/>
-    </svg>
-  </a>
-
-  <a target="_blank" href="https://twitter.com/franckcuny" title="@franckcuny">
-    <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-twitter" viewBox="0 0 20 20">
-      <path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"/>
-    </svg>
-  </a>
-
-  <a href="/ssh.pub.sig" title="SSH public keys">
-    <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-filetype-key" viewBox="0 0 20 20">
-      <path fill-rule="evenodd" d="M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM3.21 11.85h-.87L.83 13.64H.79v-1.79H0v3.999h.791v-1.283l.41-.466 1.12 1.749h.951l-1.488-2.276 1.427-1.723Zm2.903 3.352h-1.79v-1.073h1.685v-.606H4.323v-1.025h1.79v-.648H3.538v3.999h2.575v-.647Zm2.243-.888v1.535h-.794v-1.52L6.223 11.85H7.1l.853 1.696h.032l.855-1.696h.856l-1.339 2.464Z"/>
-    </svg>
-  </a>
-
-  <a href="/feed.xml" title="atom feed">
-    <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-rss-fill" viewBox="0 0 20 20">
-      <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm1.5 2.5c5.523 0 10 4.477 10 10a1 1 0 1 1-2 0 8 8 0 0 0-8-8 1 1 0 0 1 0-2zm0 4a6 6 0 0 1 6 6 1 1 0 1 1-2 0 4 4 0 0 0-4-4 1 1 0 0 1 0-2zm.5 7a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
-    </svg>
-  </a>
-
-</footer>
diff --git a/users/fcuny/notes/layouts/partials/head.html b/users/fcuny/notes/layouts/partials/head.html
index 7de4fd4..6e5a6fb 100644
--- a/users/fcuny/notes/layouts/partials/head.html
+++ b/users/fcuny/notes/layouts/partials/head.html
@@ -6,12 +6,11 @@
 
   {{ $css := "/css/custom.css"  }}
   <link rel="stylesheet" href="{{ $css }}">
-  <link rel="alternate" href="{{ "/feed.xml" | relURL }}" type="application/atom+xml" title="ATOM feed">
   <link rel="author" href="humans.txt" />
 
   <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🖥️</text></svg>">
 
-  <meta name="description" content="Franck Cuny's website, with articles about computers stuff.">
+  <meta name="description" content="Franck's notes.">
   <meta name="author" content="Franck Cuny">
 
   <title>{{ .Title }}</title>
diff --git a/users/fcuny/notes/layouts/partials/header.html b/users/fcuny/notes/layouts/partials/header.html
index fe90497..798463c 100644
--- a/users/fcuny/notes/layouts/partials/header.html
+++ b/users/fcuny/notes/layouts/partials/header.html
@@ -1,10 +1,5 @@
 <header>
   <nav class="navbar">
     <a class="nav-bold" href="{{ .Site.BaseURL }}">~/notes</a>
-    <ul class="nav-links">
-      {{ range .Site.Menus.main }}
-      <li class="nav-item"><a class="nav-bold" href="{{ absURL .URL }}">{{ .Title }}</a></li>
-      {{ end }}
-    </ul>
   </nav>
 </header>
diff --git a/users/fcuny/notes/static/css/custom.css b/users/fcuny/notes/static/css/custom.css
index 70ce618..e02631a 100644
--- a/users/fcuny/notes/static/css/custom.css
+++ b/users/fcuny/notes/static/css/custom.css
@@ -1,11 +1,16 @@
+html {
+  margin-left: 2em;
+  margin-right: 0em;
+  margin-top: 1em;
+}
+
 body {
-  font-family: sans-serif;
-  font-size: 1em;
-  line-height: 1.8em;
+  font-family: monospace;
+  font-size: 1.15em;
+  line-height: 1.5em;
   color: #0e0e0b;
-  margin: 1em auto;
   padding: 0 0.55em;
-  max-width: 50rem;
+  max-width: 60rem;
 }
 
 h1 {
@@ -87,9 +92,8 @@ pre {
 }
 
 #meta_tags {
-  border-radius: 8px;
   padding: 0 .5rem;
-  font-size: 0.9rem;
+  font-size: 0.8rem;
   border: 2px solid #eee;
   background-color: #eee;
 }
@@ -102,28 +106,30 @@ pre {
 
 #meta_date {
   font-style: italic;
-  font-size: 0.9rem;
+  font-size: 0.8rem;
 }
 
 table {
   width: 100%;
-  border-spacing: 0px;
+  border-spacing: px;
   outline: none;
 }
 
 td{
-  padding-right: 0.7em;
+  padding-left: 0.4em;
   padding-top: 0.4em;
   padding-bottom: 0.4em;
 }
 thead {
-    color: #000;
-    font-style: bold;
-    text-align: left;
+  color: #000;
+  font-style: bold;
+  text-align: left;
 }
 table, th, td {
-    font-family: monospace;
-    color: #000;
+  font-family: monospace;
+  border: 1px solid;
+  border-collapse: collapse;
+  color: #000;
 }
 
 blockquote {
@@ -168,11 +174,17 @@ nav {
 
 article {
   text-align: justify;
+  padding-top: 2em;
 }
 
-.post-permalink {
-  list-style: none;
-  margin-left: -20px;
+#post-permalink {
+  list-style-type: none;
+  padding-left: 0;
+}
+
+#post-permalink>li {
+ line-height:1.2rem;
+ margin:.6rem 0
 }
 
 .post-date {
@@ -180,22 +192,3 @@ article {
   font-weight: 400;
   font-size: 1.1em;
 }
-
-footer {
-  border-top: 2px solid #eee;
-  margin-top: 2em;
-  display: flex;
-  flex-direction: row;
-  justify-content: left;
-  align-items: left;
-}
-
-footer a, footer a:link, footer a:focus, footer a:active, footer a:hover {
-  color: black;
-  text-decoration: none;
-  padding: 5px;
-}
-
-footer a:not(:first-child) {
-  margin-left: 15px;
-}