Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@gmail.com>2020-05-15 21:40:19 +0300
committerDarshan Baral <darshanbaral@gmail.com>2020-05-15 21:40:19 +0300
commit46e7f514a9c66907c662c8e2f095568174626576 (patch)
treede39d61037231b69f2901b60f0c053b4b029e605
parent4463651555335de8a8cd453be32b9e4b705b0a95 (diff)
fixed column width in archive
-rw-r--r--layouts/section/archive.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/section/archive.html b/layouts/section/archive.html
index 647b3ef..9c64820 100644
--- a/layouts/section/archive.html
+++ b/layouts/section/archive.html
@@ -4,7 +4,7 @@
<table style="width: 100%;">
<thead>
<tr>
- <th style="max-width: 50px;">Date</th>
+ <th>Date</th>
<th>Title</th>
<th>Section</th>
</tr>
@@ -12,7 +12,7 @@
<tbody>
{{ range $paginator.Pages }}
<tr>
- <td style="max-width: 50px;">
+ <td>
<time>{{- dateFormat .Site.Params.theme.dateFormat .Date }}</time>
</td>
<td><a href="{{ .Permalink }}">{{ .Title }}</a></td>