Cool sites that run Hugo

Last year @loupbrun and me we built Le Novendécaméron, a literary project (in french) : https://novendecameron.ramures.org/ (We are in discussion with the editors to make the code available.)

4 Likes
2 Likes
3 Likes

My first attempt at a website in Hebrew

3 Likes

I have made 2 websites with Hugo so far:
pictoselector.eu
straatepistemologie.nl

I really like the loading speed of those sites. The wordpress version was a lot slower

2 Likes
1 Like

I have build a CMS for Hugo (only) which can be found here:

https://cms.usecue.com/

The website for this CMS is built in Hugo (obviously). The CMS with integrated hosting platform caters over 80 websites.

5 Likes

Sites with high traffic according to builtwith.com

  1. https://developer.gettyimages.com/
  2. https://pgealerts.alerts.pge.com/
  3. https://design.frontlineeducation.com/
  4. https://profiles-help.yougov.com/
  5. https://developer.gimp.org/
  6. https://tech.gsa.gov/
  7. https://osqa-ask.wireshark.org/
  8. https://jdbc.postgresql.org/
  9. https://developers.whmcs.com/
  10. https://www.freebsd.org/
  11. https://www.perl.com/
  12. https://telepathy.freedesktop.org/
  13. https://ghost.org/
  14. https://devdocs.prestashop-project.org/
  15. https://verity.gumgum.com/
  16. https://grafana.com/
  17. https://www.expressvpn.com/
  18. https://oology-prod.redbird.prod.mheducation.com/
  19. https://guest.mskcc.org/location/
  20. https://podcasts.adafruit.com/
  21. https://mapping-crimes-against-rohingya.amnesty.org/
  22. https://conf.archlinux.org/
  23. https://vms.taps.anl.gov/
4 Likes

Incredible sites :star_struck:

Hope some could find their way into the themes e.g. appscode
Tried to install the appscode from github but failed.

datadoghq and so many others - lots of insane sites :wow:

How about this multilingual one?

https://www.davie.ca

The website uses Hugo and Usecue CMS. Same for these single language websites:

https://www.springtijarchitecten.nl
https://www.search.nl

6 Likes

I think I might be the world’s only psychedelic website using Hugo.

2 Likes

may I PN you for some Tipps to enhance my site with some richness as you did at yours?

Who me?

yes you!

What would you like to know?

how I can inject “sub-lists” (I don’t know how this is called) by taxonomy as you did at your sidebar.

Categories widget on sidebar:

{{ if .Site.Params.widgets.categories }}
{{ if isset .Site.Taxonomies "categories" }}
{{ if not (eq (len .Site.Taxonomies.categories) 0) }}
<div data-pagefind-ignore class="panel panel-default sidebar-menu bg4">

<div class="panel-heading">
   <p class="h4 panel-title">
   {{ i18n "categoriesTitle" }}</p>
</div>

    <div class="panel-body">
        <ul class="sidebar-categories">
            {{ range $name, $items := .Site.Taxonomies.categories }}
                {{ if and (ne $name "radio") (ne $name "about") (ne $name "psychedelics") (ne $name "")}}
                <li><a href="{{ $.Site.BaseURL }}categories/{{ $name | urlize | lower }}">
                    📁 {{ $name | title}} ({{ len $items }})</a>
                </li>
                {{ end }}
            {{ end }}
        </ul>
    </div>
</div>
{{ end }}
{{ end }}
{{ end }}

Tag cloud widget on sidebar:

{{ if .Site.Params.widgets.tags }}
{{ if isset .Site.Taxonomies "tags" }}
		{{ if not (eq (len .Site.Taxonomies.tags) 0) }}
		<div data-pagefind-ignore class="panel sidebar-menu bg4">
			<div class="panel-heading">
				<h1 class="panel-title"> Related Tags
				</h1>
			</div>
			<div class="panel-body">
				<ul class="tag-cloud center">
					{{ range $name, $items := .Site.Taxonomies.tags }}
						{{ if and (ne $name "radio") (ne $name "about") (ne $name "")}}
							<li><a class="btn btn-transparent" href="{{ $.Site.BaseURL }}tags/{{ $name | urlize | lower }}">📌 {{ $name | title }} <span class="" style="color: #AAA; font-size: 11px; text-decoration: none;">({{ len $items }})</span></a></li>
						{{ end }}
					{{ end }}
				</ul>
			</div>
		</div>
		{{ end }}
	{{ end }}
{{ end }}

1 Like

The davie.ca website looks awesome! Is the theme on GitHub?

No, it is a custom website.

1 Like

Interesting site.
Can anyone recognize what tool they used for the styles?