Compare commits
5 Commits
87530733b3
...
b14099207d
Author | SHA1 | Date | |
---|---|---|---|
|
b14099207d | ||
|
acab25521f | ||
|
709394f8e1 | ||
|
422bff3725 | ||
|
706a5bd394 |
@ -40,8 +40,8 @@ $ hugo server
|
|||||||
To kick start, copy the following configuration and paste it in `config.toml` file in your root directory.
|
To kick start, copy the following configuration and paste it in `config.toml` file in your root directory.
|
||||||
|
|
||||||
__IMPORTANT__
|
__IMPORTANT__
|
||||||
- copy your profile picture named `profile.jpg` in the `static` folder
|
- 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 your its full file name.
|
- copy your CV file in the `static` folder. Set the `cv_name` variable to its full file name.
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
baseURL = "https://example.edu"
|
baseURL = "https://example.edu"
|
||||||
|
0
exampleSite/content/.gitkeep
Normal file
0
exampleSite/content/.gitkeep
Normal file
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
@ -1,6 +1,6 @@
|
|||||||
<div class="footer wrapper">
|
<div class="footer wrapper">
|
||||||
<nav class="nav">
|
<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>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="header">
|
<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>
|
<h1 class="site-title">{{ .Site.Title }}</h1>
|
||||||
<div class="site-affilation">
|
<div class="site-affilation">
|
||||||
<span class="affilation">
|
<span class="affilation">
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<div class="introduction">
|
<div class="introduction">
|
||||||
|
{{ with .Site.Params.projects }}
|
||||||
<h4>Projects</h4>
|
<h4>Projects</h4>
|
||||||
<ul>
|
<ul>
|
||||||
{{- range $index, $projects_map := .Site.Params.projects -}}
|
{{- range $index, $projects_map := $.Site.Params.projects -}}
|
||||||
|
|
||||||
{{ range $elem_index, $project := $projects_map.project }}
|
{{ range $elem_index, $project := $projects_map.project }}
|
||||||
<li>
|
<li>
|
||||||
@ -30,4 +31,5 @@
|
|||||||
|
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
</ul>
|
</ul>
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
{{ if $publication.link }}
|
{{ if $publication.link }}
|
||||||
<a href="{{ $publication.link }}" class="publications"> {{ $publication.name }}, </a>
|
<a href="{{ $publication.link }}" class="publications"> {{ $publication.name }}, </a>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<p class="publications">{{ $publication.name }},</p>
|
<p class="publications"> {{ $publication.name }}, </p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ $publication.dest | markdownify }}.
|
{{ $publication.dest | markdownify }}.
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
name = "Avicenna"
|
name = "Avicenna"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
licenselink = "https://github.com/hadisinaee/avicenna/blob/master/LICENSE"
|
licenselink = "https://github.com/hadisinaee/avicenna/blob/master/LICENSE"
|
||||||
description = ""
|
description = "A minimal, simple, and responsive academic page."
|
||||||
homepage = "https://github.com/hadisinaee/avicenna"
|
homepage = "https://github.com/hadisinaee/avicenna"
|
||||||
tags = ["academic", "personal", "minimal", "minimalist", "clean", "responsive", "simple", "university"]
|
tags = ["academic", "personal", "minimal", "minimalist", "clean", "responsive", "simple", "university"]
|
||||||
features = ["Academic", "Responsive", "Clean And Minimal", "Social Media Links"]
|
features = ["Academic", "Responsive", "Clean And Minimal", "Social Media Links"]
|
||||||
|
Loading…
Reference in New Issue
Block a user