Skip to content

Commit

Permalink
remove logos
Browse files Browse the repository at this point in the history
replace favicon
update site.author params
  • Loading branch information
brentharrison1 committed Jul 1, 2020
1 parent 45535cd commit fdb8086
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ <h5>Contact Me</h5>
<div class="row text-left">
<div class="col-md-4">
<a id="theme" href="https://github.com/hossainemruz/toha" target="#">
<img src="/assets/images/logo-inverted.png">
Toha
<!-- <img src="/assets/images/logo-inverted.png"> -->
Hugo theme (Toha)
</a>
</div>
<div class="col-md-4">{{ if .Site.Params.copyright }}{{ .Site.Params.copyright }}{{ else }}© 2020 Copyright.{{ end }}</div>
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/helpers/get-author-image.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ $authorImage:= "/assets/images/default-avatar.png"}}
{{ if .Site.Data.site.author}}
{{ $authorImage = .Site.Data.site.author.image | relURL }}
{{ if .Site.Params.author}}
{{ $authorImage = .Site.Params.author.image | relURL }}
{{ end}}
{{ if eq (printf "%T" .Params.author ) "maps.Params" }}
{{ with .Params.author }}
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/helpers/get-author-name.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ $authorName:= "John Doe"}}
{{ if .Site.Data.site.author}}
{{ $authorName = .Site.Data.site.author.name }}
{{ if .Site.Params.author}}
{{ $authorName = .Site.Params.author.name }}
{{ end}}
{{ if eq (printf "%T" .Params.author ) "maps.Params" }}
{{ with .Params.author }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/navbar-2.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<nav class="navbar navbar-expand-lg top-navbar final-navbar shadow">
<div class="container">
<a class="navbar-brand" href="{{ .navBrandURL }}">
<img src="/assets/images/logo.png">
<!-- <img src="/assets/images/logo.png"> -->
{{- .title -}}
</a>
<button class="navbar-toggler navbar-light" type="button" {{ if .hasToggleButton }}onclick="toggleSidebar()"{{ end }}>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/navbar.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<nav class="navbar navbar-expand-lg top-navbar initial-navbar" id="top-navbar">
<div class="container">
<a class="navbar-brand" href="{{ .Site.BaseURL }}">
<img src="/assets/images/logo-inverted.png" id="logo">
<!-- <img src="/assets/images/logo-inverted.png" id="logo"> -->
{{- .Site.Title -}}
</a>
<button
Expand Down
Binary file modified static/assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fdb8086

Please sign in to comment.