You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Marek Nečada e43f73ab95 Použít parametr "eventdate" u stránek typu "event" 7 days ago
.github Create FUNDING.yml 3 years ago
archetypes Fix comments validation 3 years ago
exampleSite Merge pull request #14 from deining/twitter 1 year ago
images Fixes for theme submission 3 years ago
layouts Použít parametr "eventdate" u stránek typu "event" 7 days ago
static fragments: team 6 months ago
.gitignore Lanyon update 3 years ago
Dockerfile Smaller docker image 3 years ago
LICENSE.md Lanyon update 3 years ago
README.md Update details 2 years ago
docker-compose.yml Smaller docker image 3 years ago
go.mod Fork, CE-style dates 1 year ago
theme.toml Fixes for theme submission 3 years ago

README.md

Soho

Soho is a minimalist two-column hugo theme based on Hyde inspired by the success of Flex.

Screenshot

Features

  • Mobile First
  • Responsive
  • Semantic
  • SEO best practices
    • Open Graph
    • Schema.org (Microdata and JSON-LD)
    • Twitter Card
  • Pagination
  • Customizable
  • Support all Hugo Internals

Integrations

Installation

To install Soho as your default theme, first install this repository in the themes/ directory:

$ cd themes/
$ git submodule add https://github.com/alexandrevicenzi/soho.git

Second, specify soho as your default theme in the config.toml file. Just add the line

theme = "soho"

at the top of the file.

Configuration

baseURL = "https://example.com"
title = "Soho"
languageCode = "en"
enableInlineShortcodes = true

summarylength = 10
enableEmoji = true

[params]
author = "Author Name"
description = "My Blog"

## Set one of:
# gravatar = "soho@example.com"
profilePicture = "images/profile.png"

copyright = "Author Name"
license = "CC BY-SA 4.0"
licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"

## Set custom theme color.
# themeColor = "#fc2803"

## Set custom CSS and/or JS to override site defaults.
customCss = ["css/blog.css"]
customJs = ["js/blog.js"]

  ## Set as many as you want.
  [[params.socialIcons]]
  icon = "fa-linkedin"
  title = "Linkedin"
  url = "#"

  [[params.socialIcons]]
  icon = "fa-github"
  title = "GitHub"
  url = "#"

  [[params.socialIcons]]
  icon = "fa-twitter"
  title = "Twitter"
  url = "#"

[menu]

  [[menu.main]]
  name = "Posts"
  weight = 100
  identifier = "posts"
  url = "/posts/"

  [[menu.main]]
  name = "About"
  identifier = "about"
  weight = 300
  url = "/about/"

[taxonomies]
  category = "categories"
  series = "series"
  tag = "tags"

[markup]

  [markup.highlight]
  codeFences = true
  guessSyntax = false
  hl_Lines = ""
  lineNoStart = 1
  lineNos = false
  lineNumbersInTable = true
  noClasses = true # if false, you need to provide you own custom CSS
  style = "monokai"
  tabWidth = 4

License

MIT