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.
|
||||
|
||||
__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"
|
||||
|
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">
|
||||
<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>
|
||||
|
||||
|
@ -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">
|
||||
|
@ -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>
|
||||
|
@ -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"]
|
||||
|
Loading…
Reference in New Issue
Block a user