Skip to content

Commit

Permalink
Support textlink #42
Browse files Browse the repository at this point in the history
  • Loading branch information
koirand committed May 5, 2019
1 parent dff63b1 commit bd4b10c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions exampleSite/config.toml
Expand Up @@ -28,25 +28,29 @@ hasCJKLanguage = true
section = ["JSON", "HTML"]

[[menu.main]]
name = "Blog"
identifier = "blog"
# name = "Blog" #If display text link, cancel comment out
pre = "<i class='fa fa-book-open fa-lg'></i>" #Choose your favorite font from Font Awesome
url = "/blog/"
weight = 10

[[menu.main]]
name = "Twitter"
identifier = "twitter"
# name = "Twitter"
pre = "<i class='fab fa-twitter fa-lg'></i>"
url = "https://twitter.com/username"
weight = 20

[[menu.main]]
name = "GitHub"
identifier = "github"
# name = "GitHub"
pre = "<i class='fab fa-github fa-lg'></i>"
url = "https://github.com/username"
weight = 30

[[menu.main]]
name = "Email"
identifier = "email"
# name = "Email"
pre = "<i class='fa fa-envelope fa-lg'></i>"
url = "mailto:username@example.com"
weight = 40
2 changes: 1 addition & 1 deletion layouts/index.html
Expand Up @@ -21,7 +21,7 @@ <h1 class="author">{{ .Site.Params.Author }}</h1>
<nav>
<ul>
{{ range .Site.Menus.main }}
<li><a href="{{ .URL }}" aria-label="{{ .Name }}">{{ .Pre }}</a></li>
<li><a href="{{ .URL }}" aria-label="{{ .Identifier }}">{{ .Pre }}<br>{{ .Name }}</a></li>
{{ end }}
</ul>
</nav>
Expand Down

0 comments on commit bd4b10c

Please sign in to comment.