Compare commits

...

5 Commits

Author SHA1 Message Date
Hadi Sinaee
b14099207d
Fixed broken theme in hugoThemes website (#9)
* fix: added $ to the within the scope

closes #8
2019-08-06 22:16:06 +04:30
Antoine Prouvost
acab25521f Fix spacing for non ref pub; Do not display project if empty (#7) 2019-08-03 13:19:54 +04:30
Hadi Sinaee
709394f8e1
fix: grammar issues in reading fixed 2019-07-17 13:53:47 +04:30
Hadi Sinaee
422bff3725
Fixing HugoThemes Feedbacks (#5)
* add: 'content' folder under exampleSite
fix #4

* fix: absURL added for profile.jpg
fix #3 

* update: added description about theme
close #2

* fix: profile image renamed to the hardcoded one
2019-07-02 21:36:56 +04:30
Hadi Sinaee
706a5bd394 fix: updaed footer link with avicenna repo url 2019-07-01 23:46:50 +04:30
8 changed files with 9 additions and 7 deletions

View File

@ -40,8 +40,8 @@ $ hugo server
To kick start, copy the following configuration and paste it in `config.toml` file in your root directory.
__IMPORTANT__
- copy your profile picture named `profile.jpg` in the `static` folder
- copy your CV file in the `static` folder. Set the `cv_name` variable to your its full file name.
- copy your profile picture and name it `profile.jpg` in the `static` folder
- copy your CV file in the `static` folder. Set the `cv_name` variable to its full file name.
```toml
baseURL = "https://example.edu"

View File

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -1,6 +1,6 @@
<div class="footer wrapper">
<nav class="nav">
<div>Avicenna Theme | Built with <a href="https://gohugo.io">Hugo</a></div>
<div><a href="https://github.com/hadisinaee/avicenna">Avicenna Theme</a> | Built with <a href="https://gohugo.io">Hugo</a></div>
</nav>
</div>

View File

@ -1,5 +1,5 @@
<div class="header">
<img src="profile.jpg" class="profile_image">
<img src={{ "profile.jpg" | absURL }} class="profile_image">
<h1 class="site-title">{{ .Site.Title }}</h1>
<div class="site-affilation">
<span class="affilation">

View File

@ -1,7 +1,8 @@
<div class="introduction">
{{ with .Site.Params.projects }}
<h4>Projects</h4>
<ul>
{{- range $index, $projects_map := .Site.Params.projects -}}
{{- range $index, $projects_map := $.Site.Params.projects -}}
{{ range $elem_index, $project := $projects_map.project }}
<li>
@ -30,4 +31,5 @@
{{- end -}}
</ul>
{{ end }}
</div>

View File

@ -10,7 +10,7 @@
{{ if $publication.link }}
<a href="{{ $publication.link }}" class="publications"> {{ $publication.name }}, </a>
{{ else }}
<p class="publications">{{ $publication.name }},</p>
<p class="publications"> {{ $publication.name }}, </p>
{{ end }}
{{ $publication.dest | markdownify }}.

View File

@ -4,7 +4,7 @@
name = "Avicenna"
license = "MIT"
licenselink = "https://github.com/hadisinaee/avicenna/blob/master/LICENSE"
description = ""
description = "A minimal, simple, and responsive academic page."
homepage = "https://github.com/hadisinaee/avicenna"
tags = ["academic", "personal", "minimal", "minimalist", "clean", "responsive", "simple", "university"]
features = ["Academic", "Responsive", "Clean And Minimal", "Social Media Links"]