change in css file
This commit is contained in:
+1
-1
@@ -1,3 +1,3 @@
|
||||
baseURL = "http://example.org/"
|
||||
baseURL = "https://hugo-blog0.netlify.app/"
|
||||
languageCode = "en-us"
|
||||
title = "My New Hugo Site"
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: "Making a Verlet Physics Engine in Javascript"
|
||||
date: 2020-08-14T13:30:29+05:30
|
||||
draft: true
|
||||
draft: false
|
||||
subtitle: "Javascript"
|
||||
tags:
|
||||
- blog
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: "Making a Verlet Physics Engine in Javascript"
|
||||
date: 2020-08-14T13:22:10+05:30
|
||||
draft: true
|
||||
draft: false
|
||||
subtitle: "Javascript"
|
||||
tags:
|
||||
- markdown
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: "Making a Verlet Physics Engine in Javascript"
|
||||
date: 2020-08-11T23:03:58+05:30
|
||||
draft: true
|
||||
draft: false
|
||||
subtitle: "Javascript"
|
||||
bg_image: "images/bg-image.jpg"
|
||||
tags:
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: "How to make a hugo theme"
|
||||
date: 2020-08-14T13:11:45+05:30
|
||||
draft: true
|
||||
draft: false
|
||||
subtitle: "Hugo theme"
|
||||
tags:
|
||||
- hugo
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: "Making a Verlet Physics Engine in Javascript"
|
||||
date: 2020-08-14T13:22:10+05:30
|
||||
draft: true
|
||||
draft: false
|
||||
subtitle: "Javascript"
|
||||
tags:
|
||||
- markdown
|
||||
|
||||
@@ -10,8 +10,10 @@
|
||||
|
||||
<body>
|
||||
{{ range .Pages }}
|
||||
<div class="container col-md-6 col-md-offset-3">
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-md-center">
|
||||
<div class="col-md-7 col-md-offset-3">
|
||||
<div class="item-title">
|
||||
<a href="{{ .Permalink }}">
|
||||
<h2 class="item-title">{{ .Title }}</h2>
|
||||
{{ if .Params.subtitle }}
|
||||
@@ -20,6 +22,7 @@
|
||||
</h4>
|
||||
{{ end }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="text-muted">
|
||||
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-calendar" fill="currentColor"
|
||||
@@ -44,11 +47,14 @@
|
||||
{{ end }}
|
||||
|
||||
<div style="color:grey; font-size:16px;">{{ if .Params.categories }}<strong>Categories:</strong>
|
||||
{{range .Params.categories}}<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> {{end}}{{end}}
|
||||
{{range .Params.categories}}<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
||||
{{end}}{{end}}
|
||||
</div>
|
||||
<div style="color:grey; font-size:16px;">{{ if .Params.moods }}<strong>Moods:</strong> {{range .Params.moods}}<a
|
||||
href="{{ "/moods/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> {{end}}{{end}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
{{ end }}
|
||||
</body>
|
||||
|
||||
@@ -10,12 +10,16 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container col-md-6 col-md-offset-3">
|
||||
<div class="container">
|
||||
<div class="row justify-content-md-center">
|
||||
<div class="col-md-7 col-md-offset-3">
|
||||
<h1>{{.Title}}</h1>
|
||||
<div>{{ dateFormat "Monday, Jan 2, 2006" .Date }}</div>
|
||||
<div>{{if .Params.author}}Author: {{.Params.Author}}{{end}}</div>
|
||||
<div>{{.Content}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
+5
-8
@@ -1,12 +1,5 @@
|
||||
h1 {
|
||||
font-family: 'Alata', sans-serif;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
font-family: 'Alata', sans-serif;
|
||||
color: rgba(0, 0, 0, 0.541);
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -14,3 +7,7 @@ a:hover {
|
||||
.item-title:hover {
|
||||
color: rgb(0, 204, 255);
|
||||
}
|
||||
|
||||
.blog-tags {
|
||||
color: rgb(0, 204, 255);
|
||||
}
|
||||
Reference in New Issue
Block a user