diff --git a/.gitignore b/.gitignore index d9cc791d5..6ed008edd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -themes/theme-starter/pipeline/node_modules \ No newline at end of file +themes/hugodocs/pipeline/node_modules +my-notes.md \ No newline at end of file diff --git a/README.md b/README.md index 5b5347234..87a232abc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ -## Hugo Theme Starter +# Hugo Docs + +## Contributing to the Docs + +## Suggestions for Improvements diff --git a/config.toml b/config.toml index d41ec74dd..e8728fea0 100644 --- a/config.toml +++ b/config.toml @@ -1,5 +1,5 @@ archetypedir = "archetypes" -baseurl = "" +baseurl = "/" buildDrafts = false buildFuture = false canonifyurls = true @@ -35,9 +35,9 @@ pygmentsUseClasses = true relativeURLs = true source = "" # This is the top-level, global site title -title = "" +title = "Hugo Docs Concept" # Change this once you've created your theme -theme = "theme-starter" +theme = "hugodocs" # Set to true to convert mysite/section/ to mysite/section.html uglyURLs = false verbose = false @@ -45,8 +45,8 @@ verboseLog = false # Setting this to false will keep hugo from watching for changes during local development watch = true -[permalinks] - singles = "/:title/" +# [permalinks] +# singles = "/:title/" #CUSTOM PARAMS [params] diff --git a/themes/theme-starter/pipeline/scss/abstracts/_functions.scss b/content/about/Find References old mode 100755 new mode 100644 similarity index 100% rename from themes/theme-starter/pipeline/scss/abstracts/_functions.scss rename to content/about/Find References diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 000000000..78395aed2 --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,15 @@ +--- +title: About +linktitle: +description: A general introduction to Hugo, a powerful static site generator written in Golang. +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: 40 +draft: false +type: +layout: +slug: +aliases: +notes: +--- \ No newline at end of file diff --git a/content/about/features.md b/content/about/features.md new file mode 100644 index 000000000..0a1bb18fc --- /dev/null +++ b/content/about/features.md @@ -0,0 +1,65 @@ +--- +title: Hugo Features +linktitle: +description: Hugo is the fastest of all static site generators and includes features +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- + + +Hugo boasts the following features: + +### General + + * Extremely fast build times (≈1 ms per page) + * Completely cross platform: Runs on  Mac OS X,  Linux,  Windows, and more! + * Easy [installation](/overview/installing/) + * Render changes [on the fly](/overview/usage/) with [LiveReload](/extras/livereload/) as you develop + * [Powerful Theming][] + * Host your site anywhere + +### Organization + + * Straightforward [organization](/project-organization), including website sections + * Customizable [URLs](/extras/urls/) + * Support for configurable [taxonomies](/taxonomies/overview/) which includes categories and tags. Create your own custom organization of content + * Ability to [sort content](/content/ordering/) as you desire + * Automatic [table of contents](/extras/toc/) generation + * Dynamic menu creation + * [Pretty URLs](/extras/urls/) support + * [Permalink](/extras/permalinks/) pattern support + * [Aliases](/extras/aliases/) (redirects) + +### Content + + * Native [Markdown](/content/example/) support + * Support for other languages through _external helpers_, see [supported formats](/content/supported-formats) + * Support for TOML, YAML and JSON metadata in [frontmatter](/content/front-matter/) + * Customizable [homepage](/layout/homepage/) + * Multiple [content types](/content/types/) + * Automatic and user defined [summaries](/content/summaries/) + * [Shortcodes](/extras/shortcodes/) to enable rich content inside of Markdown + * ["Minutes to Read"](/layout/variables/) functionality + * ["Wordcount"](/layout/variables/) functionality + +### Additional Features + + * Integrated [Disqus](https://disqus.com/) comment support + * Integrated [Google Analytics](https://google-analytics.com/) support + * Automatic [RSS](/layout/rss/) creation + * Support for [Go](http://golang.org/pkg/html/template/), [Amber](https://github.com/eknkc/amber) and [Ace](https://github.com/yosssi/ace) HTML templates + * Syntax [highlighting](/extras/highlighting/) powered by [Pygments](http://pygments.org/) + +See what's coming next in the [roadmap](/meta/roadmap/). + +[Powerful Theming]: /themes \ No newline at end of file diff --git a/content/about/introduction-to-hugo.md b/content/about/introduction-to-hugo.md new file mode 100644 index 000000000..02966af5b --- /dev/null +++ b/content/about/introduction-to-hugo.md @@ -0,0 +1,133 @@ +--- +title: Introduction to Hugo +linktitle: +description: An introduction to Hugo and the impetus for its creation. +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: 10 +draft: false +type: +layout: +slug: +aliases: [/overview/introduction] +notes: +--- + +## What is Hugo? + +Hugo is a general-purpose website framework. Technically speaking, Hugo is +a static site generator. Unlike systems that dynamically build a page +with each visitor request, Hugo builds pages when you create +your content. Since websites are viewed far more often than they are +edited, Hugo is optimized for website viewing for the end users of your site and an ideal writing experience for authors. + +Sites built with Hugo are extremely fast and secure. Hugo sites can +be hosted anywhere, including [Heroku][], [GoDaddy][], [DreamHost][], +[GitHub Pages][], [Surge][], [Aerobatic][], [Firebase Hosting][], +[Google Cloud Storage][], [Amazon S3][], and [CloudFront][], and work well +with CDNs. Hugo sites run without the need for a database or dependencies on expensive runtimes like Ruby, Python, or PHP. + +We think of Hugo as the ideal website creation tool. With nearly instant +build times and the ability to rebuild whenever a change is made, Hugo +provides a very fast feedback loop. This is essential when you are +designing websites, but also very useful when creating content. + +## Why a Static Site Generator? + +Website generators render content into HTML files. Most are "dynamic site generators." That means the HTTP server (ie, the program that communicates with your end user's browser) runs the generator to create a new HTML file every time an end user requests a page. + +Creating the page dynamically requires the HTTP server have enough memory and CPU to effectively run the generator around the clock. If not, your end user will wait in a queue for the page to be generated. + +To prevent unnecessary delays in delivering pages to end users, dynamic site generators programmed their systems to cache the HTML files. A cached page is a copy that is temporarily stored on the computer. Sending a cached copy is faster than generating a new page at the time of request because the majority of the work is already done. + +Hugo takes caching a step further. All HTML files are rendered on your +computer. You can review the files before you copy them to the computer +hosting the HTTP server. Since the HTML files aren't generated dynamically, +we say that Hugo is a "static site generator." + +Not running a web site generator on your HTTP server has many benefits. +The most noticeable is performance - HTTP servers are very good at +sending files. So good that you can effectively serve the same number +of pages with a fraction of the memory and CPU needed for a dynamic site. + +Hugo has two components to help you build and test your web site. The +one that you'll probably use most often is the built-in HTTP server. +When you run `hugo server`, Hugo renders all of your content into +HTML files and then runs an HTTP server on your computer so that you +can see what the pages look like. + +The second component is used when you're ready to publish your web +site to the computer running your website. Running Hugo without any +actions will rebuild your entire web site using the `baseURL` setting +from your site's configuration file. That's required to have your page +links work properly with most hosting companies. + +## How fast is Hugo? + +{{% youtube CdiDYZ51a2o %}} + +## What does Hugo do? + +In technical terms, Hugo takes a source directory of files and +templates and uses these as input to create a complete website. + +## Who should use Hugo? + +Hugo is for people that prefer writing in a text editor over +a browser. + +Hugo is for people who want to hand code their own website without +worrying about setting up complicated runtimes, dependencies and +databases. + +Hugo is for people building a blog, company site, portfolio, tumblog, +documentation, single page site or a site with thousands of +pages. + +## Why did you write Hugo? + +I wrote Hugo ultimately for a few reasons. First, I was disappointed with +WordPress, my then website solution. With it, I couldn't create +content as efficiently as I wanted to. + +It rendered slowly and required me to be online to write posts. Plus, its constant security updates and the horror stories of people's hacked blogs! I hated how content was only written in HTML instead of the much simpler Markdown. Overall, I felt like WordPress hindered more than helped. It kept me from writing great content. + +I looked at existing static site generators like [Jekyll][], [Middleman][] and [Nanoc][]. All had complicated installation dependencies and an unacceptably long time to render my blog with hundreds of posts. I wanted a framework that would give me rapid feedback while making changes to the templates, and the 5-minute-plus render times were just too slow. In general, the static site generators were very blog-minded and didn't provide for other content types and flexible URLs. + +I wanted to develop a fast and full-featured website framework without any +dependencies. The [Go language][] seemed to have all the features I needed +in a language. I began developing Hugo in Go and fell in love with the +language. I hope you will enjoy using Hugo (and contributing to it) as much +as I have writing it. + +—Steve Francia ([@spf13][]) + +[@spf13]: https://twitter.com/spf13 +[Aerobatic]: https://www.aerobatic.com/ +[Amazon S3]: http://aws.amazon.com/s3/ +[CloudFront]: http://aws.amazon.com/cloudfront/ "Amazon CloudFront" +[DreamHost]: http://www.dreamhost.com/ +[Firebase Hosting]: https://firebase.google.com/docs/hosting/ +[GitHub Pages]: https://pages.github.com/ +[GitLab]: https://about.gitlab.com +[Go language]: http://golang.org/ "The Go Programming Language" +[GoDaddy]: https://www.godaddy.com/ +[Google Cloud Storage]: http://cloud.google.com/storage/ +[Heroku]: https://www.heroku.com/ +[Jekyll]: http://jekyllrb.com/ +[Middleman]: https://middlemanapp.com/ +[Nanoc]: http://nanoc.ws/ +[Surge]: https://surge.sh + +## Next Steps + + * [Install Hugo](/overview/installing/) + * [Quick start](/overview/quickstart/) + * [Join the Mailing List](/community/mailing-list/) + * [Star us on GitHub](https://github.com/spf13/hugo) + * [Discussion Forum](http://discuss.gohugo.io/) + + diff --git a/content/about/license.md b/content/about/license.md new file mode 100644 index 000000000..30d27f047 --- /dev/null +++ b/content/about/license.md @@ -0,0 +1,214 @@ +--- +title: License +linktitle: +description: Information on the Hugo license. +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: 20 +draft: false +type: +layout: +slug: +aliases: [/meta/license] +notes: +--- + +Hugo v0.15 and later are released under the Apache 2.0 license. +Earlier releases were under the Simple Public License. + +# Apache License + +_Version 2.0, January 2004_ +_<>_ + +### Terms and Conditions for use, reproduction, and distribution + +#### 1. Definitions + +“License” shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +“Licensor” shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +“Legal Entity” shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, “control” means **(i)** the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or **(ii)** ownership of fifty percent (50%) or more of the +outstanding shares, or **(iii)** beneficial ownership of such entity. + +“You” (or “Your”) shall mean an individual or Legal Entity exercising +permissions granted by this License. + +“Source” form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +“Object” form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +“Work” shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +“Derivative Works” shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +“Contribution” shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +“submitted” means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as “Not a Contribution.” + +“Contributor” shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +#### 2. Grant of Copyright License + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +#### 3. Grant of Patent License + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +#### 4. Redistribution + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +* **(a)** You must give any other recipients of the Work or Derivative Works a copy of +this License; and +* **(b)** You must cause any modified files to carry prominent notices stating that You +changed the files; and +* **(c)** You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +* **(d)** If the Work includes a “NOTICE” text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. + +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +#### 5. Submission of Contributions + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +#### 6. Trademarks + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +#### 7. Disclaimer of Warranty + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an “AS IS” BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +#### 8. Limitation of Liability + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +#### 9. Accepting Warranty or Additional Liability + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +_END OF TERMS AND CONDITIONS_ + +### APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets `[]` replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same “printed page” as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/content/about/roadmap.md b/content/about/roadmap.md new file mode 100644 index 000000000..cde754dab --- /dev/null +++ b/content/about/roadmap.md @@ -0,0 +1,18 @@ +--- +title: Roadmap +linktitle: +description: Information on the Hugo license. +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +tags: [] +categories: [] +weight: 40 +draft: false +type: +layout: +slug: +aliases: + - /meta/roadmap +notes: +--- \ No newline at end of file diff --git a/content/about/why-i-built-hugo.md b/content/about/why-i-built-hugo.md new file mode 100644 index 000000000..2f6b862c6 --- /dev/null +++ b/content/about/why-i-built-hugo.md @@ -0,0 +1,33 @@ +--- +title: Why I Built Hugo +linktitle: +description: Hugo is the fastest of all static site generators and includes features +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- + +I wrote Hugo ultimately for a few reasons. First, I was disappointed with +WordPress, my then website solution. With it, I couldn't create +content as efficiently as I wanted to. + +WordPress sites rendered slowly and required I be online to write posts. WordPress is known for its constant security updates and horror stories of hacked blogs. I hated writing content in HTML instead of the much simpler Markdown. Overall, I felt like WordPress hindered more than helped. It kept me from writing great content. + +I looked at existing static site generators like [Jekyll][], [Middleman][] and [Nanoc][]. All had complicated installation dependencies and an unacceptably long time to render my blog with hundreds of posts. I wanted a framework that would give me rapid feedback while making changes to the templates, and the 5-minute-plus render times were just too slow. In general, the static site generators were very blog-minded and didn't provide for other content types and flexible URLs. + +I wanted to develop a fast and full-featured website framework without any +dependencies. The [Go language][] seemed to have all the features I needed +in a language. I began developing Hugo in Go and fell in love with the +language. I hope you will enjoy using Hugo (and contributing to it) as much +as I have writing it. + +—Steve Francia ([@spf13][]) diff --git a/content/community/_index.md b/content/community/_index.md new file mode 100644 index 000000000..c6a951158 --- /dev/null +++ b/content/community/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:42:41-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/content/_index.md b/content/content/_index.md new file mode 100644 index 000000000..eedd03b43 --- /dev/null +++ b/content/content/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:42:59-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/getting started/_index.md b/content/getting started/_index.md new file mode 100644 index 000000000..1b593f593 --- /dev/null +++ b/content/getting started/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:43:14-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/getting started/download-hugo.md b/content/getting started/download-hugo.md new file mode 100644 index 000000000..e3bed1a48 --- /dev/null +++ b/content/getting started/download-hugo.md @@ -0,0 +1,15 @@ +--- +title: Download Hugo +linktitle: +description: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/getting started/installing-from-source.md b/content/getting started/installing-from-source.md new file mode 100644 index 000000000..925352796 --- /dev/null +++ b/content/getting started/installing-from-source.md @@ -0,0 +1,15 @@ +--- +title: Installing from Source +linktitle: +description: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/getting started/installing-on-linux.md b/content/getting started/installing-on-linux.md new file mode 100644 index 000000000..f3a8517fb --- /dev/null +++ b/content/getting started/installing-on-linux.md @@ -0,0 +1,15 @@ +--- +title: +linktitle: +description: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/getting started/installing-on-mac.md b/content/getting started/installing-on-mac.md new file mode 100644 index 000000000..4b5a73563 --- /dev/null +++ b/content/getting started/installing-on-mac.md @@ -0,0 +1,17 @@ +--- +title: +linktitle: +description: +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/getting started/installing-on-pc.md b/content/getting started/installing-on-pc.md new file mode 100644 index 000000000..4b5a73563 --- /dev/null +++ b/content/getting started/installing-on-pc.md @@ -0,0 +1,17 @@ +--- +title: +linktitle: +description: +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/hosting and deployment/_index.md b/content/hosting and deployment/_index.md new file mode 100644 index 000000000..687651a19 --- /dev/null +++ b/content/hosting and deployment/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:43:32-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/migrations/_index.md b/content/migrations/_index.md new file mode 100644 index 000000000..5bca49e5b --- /dev/null +++ b/content/migrations/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:43:42-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/news and articles/_index.md b/content/news and articles/_index.md new file mode 100644 index 000000000..c349e1874 --- /dev/null +++ b/content/news and articles/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:43:58-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/news and articles/release-notes.md b/content/news and articles/release-notes.md new file mode 100644 index 000000000..42bec47a7 --- /dev/null +++ b/content/news and articles/release-notes.md @@ -0,0 +1,17 @@ +--- +title: Release Notes +linktitle: +description: Information on the Hugo license. +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: 30 +draft: false +type: +layout: +slug: +aliases: [/meta/release-notes] +notes: +--- \ No newline at end of file diff --git a/content/project organization/_index.md b/content/project organization/_index.md new file mode 100644 index 000000000..eba4b65fd --- /dev/null +++ b/content/project organization/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:45:06-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/site showcase/2626info.md b/content/site showcase/2626info.md new file mode 100644 index 000000000..3797860c0 --- /dev/null +++ b/content/site showcase/2626info.md @@ -0,0 +1,13 @@ +--- +date: 2016-05-03T17:20:59+09:00 +description: "Personal blog of Masashi Tsuru" +license: "" +licenseLink: "" +sitelink: http://2626.info/ +tags: +- personal +- blog +thumbnail: /img/2626info-tn.png +title: 2626.info +--- + diff --git a/content/site showcase/_index.md b/content/site showcase/_index.md new file mode 100644 index 000000000..a3de55b9e --- /dev/null +++ b/content/site showcase/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:45:18-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/site showcase/antzucaro.md b/content/site showcase/antzucaro.md new file mode 100644 index 000000000..36ec43245 --- /dev/null +++ b/content/site showcase/antzucaro.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-01-27 +date: 2014-02-03T20:00:00Z +description: Ant Zucaro's Blog +license: GPL +licenseLink: "" +sitelink: http://antzucaro.com/ +sourceLink: https://github.com/antzucaro/az.com +tags: +- personal +- blog +- foundation +thumbnail: /img/antzucaro-tn.jpg +title: Ant Zucaro +--- + diff --git a/content/site showcase/appernetic.md b/content/site showcase/appernetic.md new file mode 100644 index 000000000..53d2d8f77 --- /dev/null +++ b/content/site showcase/appernetic.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-04-26 +date: 2016-04-26T13:33:33Z +description: Appernetic.io blog +license: MIT +licenseLink: https://github.com/appernetic/hugo-bootstrap-premium/blob/master/LICENSE.md +sitelink: https://blog.appernetic.io/ +sourceLink: https://github.com/appernetic/hugo-bootstrap-premium +tags: +- company +- blog +- bootstrap +thumbnail: /img/apperneticioblog.png +title: Appernetic +--- diff --git a/content/site showcase/arresteddevops.md b/content/site showcase/arresteddevops.md new file mode 100644 index 000000000..b520b5667 --- /dev/null +++ b/content/site showcase/arresteddevops.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-11-20 +date: 2015-11-20T01:46:33-06:00 +description: "Arrested DevOps is a podcast focusing on trends in the DevOps space" +license: "apache2" +licenseLink: "https://github.com/arresteddevops/ado-hugo/blob/master/LICENSE.md" +sitelink: https://www.arresteddevops.com/ +sourceLink: https://github.com/arresteddevops/ado-hugo +tags: +- podcast +- bootstrap +thumbnail: /img/arresteddevops-tn.png +title: arresteddevops +--- diff --git a/content/site showcase/asc.md b/content/site showcase/asc.md new file mode 100644 index 000000000..bc9424820 --- /dev/null +++ b/content/site showcase/asc.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-01-27 +date: 2014-01-22T07:32:00Z +description: "" +license: CC-BY-SA +licenseLink: "" +sitelink: http://andrewcodispoti.com/ +sourceLink: https://gitlab.com/acodispo/andrewcodispoti-com +tags: +- personal +- bootstrap +thumbnail: /img/asc-tn.jpg +title: Andrew S Codispoti +--- + diff --git a/content/site showcase/astrochili.md b/content/site showcase/astrochili.md new file mode 100644 index 000000000..fcf1a4217 --- /dev/null +++ b/content/site showcase/astrochili.md @@ -0,0 +1,14 @@ +--- +date: 2016-07-31T11:22:32+03:00 +description: "Personal website" +license: "" +licenseLink: "" +sitelink: http://romansilin.com/ +sourceLink: https://github.com/astrochili/astrochili.github.io +tags: +- personal +- blog +thumbnail: /img/astrochili-tn.png +title: Roman Silin +--- + diff --git a/content/site showcase/aydoscom.md b/content/site showcase/aydoscom.md new file mode 100644 index 000000000..3239d4467 --- /dev/null +++ b/content/site showcase/aydoscom.md @@ -0,0 +1,12 @@ +--- +date: 2016-04-23T13:23:00Z +description: "web applications" +license: "" +licenseLink: "" +sitelink: https://aydos.com/ +tags: +- web applications +thumbnail: /img/aydoscom.png +title: aydos.com +--- + diff --git a/content/site showcase/barricade.md b/content/site showcase/barricade.md new file mode 100644 index 000000000..6316e085a --- /dev/null +++ b/content/site showcase/barricade.md @@ -0,0 +1,13 @@ +--- +date: 2016-04-15T14:14:28+01:00 +description: "Barricade is an early warning system against hackers." +license: "" +licenseLink: "" +sitelink: https://barricade.io +tags: +- company +- security +thumbnail: /img/barricade-tn.png +title: Barricade +--- + diff --git a/content/site showcase/bepsays.md b/content/site showcase/bepsays.md new file mode 100644 index 000000000..c6c749f11 --- /dev/null +++ b/content/site showcase/bepsays.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-05-26 +date: 2013-11-01T07:32:00Z +description: "bep's blog" +license: "" +licenseLink: "" +sitelink: http://bepsays.com/ +sourceLink: "https://github.com/bep/bepsays.com" +tags: +- personal +- blog +thumbnail: /img/bepsays-tn.png +title: bepsays.com +--- + diff --git a/content/site showcase/bugtrackers.io.md b/content/site showcase/bugtrackers.io.md new file mode 100644 index 000000000..d3a61489c --- /dev/null +++ b/content/site showcase/bugtrackers.io.md @@ -0,0 +1,13 @@ +--- +lastmod: 2015-10-27 +date: 2015-10-27T09:02:00Z +description: bugtrackers.io provides stories of digital crafters. It shows people behind bits, pixels and bug reports. bugtrackers.io is your resource for web development. +sitelink: https://www.bugtrackers.io/ +tags: +- blog +- community +- interviews +thumbnail: /img/bugtrackersio-tn.jpg +title: bugtrackers.io +--- + diff --git a/content/site showcase/camunda-blog.md b/content/site showcase/camunda-blog.md new file mode 100644 index 000000000..7e7f76427 --- /dev/null +++ b/content/site showcase/camunda-blog.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-11-30 +date: 2015-12-01T04:20:00Z +description: "Camunda BPM Team Blog" +license: "Apache 2.0" +licenseLink: "https://github.com/camunda/blog.camunda.org#license" +sitelink: http://blog.camunda.org/ +sourceLink: https://github.com/camunda/blog.camunda.org +tags: +- company +- blog +thumbnail: /img/camunda-blog.png +title: Camunda Blog +--- + diff --git a/content/site showcase/camunda-docs.md b/content/site showcase/camunda-docs.md new file mode 100644 index 000000000..8d97d1492 --- /dev/null +++ b/content/site showcase/camunda-docs.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-11-30 +date: 2015-12-01T04:20:00Z +description: "Camunda BPM Documentation" +license: MIT +licenseLink: "https://github.com/camunda/camunda-docs-theme#licence" +sitelink: http://docs.camunda.org/ +sourceLink: https://github.com/camunda/camunda-docs-theme +tags: +- company +- documentation +thumbnail: /img/camunda-docs.png +title: Camunda Docs +--- + diff --git a/content/site showcase/cdnoverview.md b/content/site showcase/cdnoverview.md new file mode 100644 index 000000000..d48788ec6 --- /dev/null +++ b/content/site showcase/cdnoverview.md @@ -0,0 +1,14 @@ +--- +date: 2016-02-17T15:19:08+01:00 +description: "Overview and comparison of CDNs, their features and prices" +license: "" +licenseLink: "" +sitelink: https://www.cdnoverview.com/ +tags: +- bootstrap +- portfolio +- tech +thumbnail: /img/cdnoverview-tn.png +title: cdnoverview.com +--- + diff --git a/content/site showcase/chinese-grammar.md b/content/site showcase/chinese-grammar.md new file mode 100644 index 000000000..3e8bc3563 --- /dev/null +++ b/content/site showcase/chinese-grammar.md @@ -0,0 +1,12 @@ +--- +lastmod: 2015-08-21 +date: 2015-08-23 +description: Chinese grammar lessons +sitelink: https://www.chineseboost.com/grammar/ +sourceLink: https://github.com/hughgrigg/chineseboost-articles +tags: +- learning +- education +thumbnail: /img/chinese-grammar-tn.png +title: Chinese Grammar +--- diff --git a/content/site showcase/chingli.md b/content/site showcase/chingli.md new file mode 100644 index 000000000..ae2d4a4db --- /dev/null +++ b/content/site showcase/chingli.md @@ -0,0 +1,12 @@ +--- +lastmod: 2015-12-19 +date: 2014-08-26T11:20:02-04:00 +description: "chingli’s personal blog" +sitelink: http://www.chingli.com/ +tags: +- personal +- blog +thumbnail: /img/chingli-tn.jpg +title: 青砾 (chingli) +--- + diff --git a/content/site showcase/chipsncookies.md b/content/site showcase/chipsncookies.md new file mode 100644 index 000000000..ff3128d81 --- /dev/null +++ b/content/site showcase/chipsncookies.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-04-14 +date: 2015-07-08T14:02:16+02:00 +description: "personal blog and portfolio of Samuel Debruyn" +license: "" +licenseLink: "" +sitelink: https://chipsncookies.com +sourceLink: https://github.com/SamuelDebruyn/chipsncookies-site +tags: +- personal +- blog +thumbnail: /img/chipsncookies-tn.png +title: Chips 'n' Cookies +--- + diff --git a/content/site showcase/christianmendoza.md b/content/site showcase/christianmendoza.md new file mode 100644 index 000000000..69f0f9896 --- /dev/null +++ b/content/site showcase/christianmendoza.md @@ -0,0 +1,12 @@ +--- +date: 2016-10-16T13:30:47-04:00 +description: "Personal site" +license: "" +licenseLink: "" +sitelink: https://christianmendoza.me/ +tags: +- personal +- profile +thumbnail: /img/christianmendoza-tn.png +title: christianmendoza.me +--- diff --git a/content/site showcase/cinegyopen.md b/content/site showcase/cinegyopen.md new file mode 100644 index 000000000..592df2612 --- /dev/null +++ b/content/site showcase/cinegyopen.md @@ -0,0 +1,12 @@ +--- +date: 2016-09-05T23:23:18+02:00 +description: "Cinegy Open documentation project" +license: "" +licenseLink: "" +sitelink: https://open.cinegy.com/ +sourceLink: +tags: +- documentation +thumbnail: /img/cinegyopen-tn.png +title: Cinegy Open +--- \ No newline at end of file diff --git a/content/site showcase/clearhaus.md b/content/site showcase/clearhaus.md new file mode 100644 index 000000000..9408ec8e6 --- /dev/null +++ b/content/site showcase/clearhaus.md @@ -0,0 +1,14 @@ +--- +date: 2016-10-21T12:37:00+02:00 +description: "Online Acquiring · Accept Visa & MasterCard within 1-3 days" +license: "" +licenseLink: "" +sitelink: https://www.clearhaus.com/ +tags: + - company + - fintech + - payments + - acquirer +thumbnail: /img/clearhaus-tn.png +title: Clearhaus +--- diff --git a/content/site showcase/cloudshark.md b/content/site showcase/cloudshark.md new file mode 100644 index 000000000..6a8b3fa4f --- /dev/null +++ b/content/site showcase/cloudshark.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-01-27 +date: 2014-03-27T09:45:00Z +description: CloudShark Appliance homepage and documentation +license: "" +licenseLink: "" +sitelink: https://appliance.cloudshark.org/ +tags: +- company +- documentation +- foundation +thumbnail: /img/cloudshark-tn.jpg +title: CloudShark +--- + diff --git a/content/site showcase/coding-journal.md b/content/site showcase/coding-journal.md new file mode 100644 index 000000000..78e4b38d2 --- /dev/null +++ b/content/site showcase/coding-journal.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-12-23 +date: 2015-12-23T11:42:00+01:00 +description: blog, portfolio +license: "" +licenseLink: "" +sitelink: http://blog.kulman.sk/ +sourceLink: https://github.com/igorkulman/coding-journal +tags: +- blog +- portfolio +thumbnail: /img/codingjournal-tn.png +title: Coding Journal +--- diff --git a/content/site showcase/consequently.md b/content/site showcase/consequently.md new file mode 100644 index 000000000..3469129f9 --- /dev/null +++ b/content/site showcase/consequently.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-02-11 +date: 2015-02-11T13:21:27+11:00 +description: "consequently.org, Greg Restall's personal website" +license: "" +licenseLink: "" +sitelink: http://consequently.org +sourceLink: "https://github.com/consequently/consequently-hugo" +tags: +- academic +- blog +- kube +thumbnail: /img/consequently.jpg +title: consequently.org +--- + diff --git a/content/site showcase/ctlcompiled.md b/content/site showcase/ctlcompiled.md new file mode 100644 index 000000000..18179cf5b --- /dev/null +++ b/content/site showcase/ctlcompiled.md @@ -0,0 +1,14 @@ +--- +date: 2016-07-25T13:45:09-04:00 +description: "CompilED is a collection of reflections and comments by the software developers at Columbia’s Center for Teaching and Learning (CTL). These views are rooted in our professional and personal experiences developing educational technology." +license: "Creative Commons Attribution-ShareAlike 3.0 United States." +licenseLink: "https://creativecommons.org/licenses/by-sa/3.0/us/" +sitelink: https://compiled.ctl.columbia.edu/ +tags: +- edtech +- technology +- blog +thumbnail: /img/ctlcompiled-tn.png +title: CompilED at CTL +--- + diff --git a/content/site showcase/danmux.md b/content/site showcase/danmux.md new file mode 100644 index 000000000..1ae4589d1 --- /dev/null +++ b/content/site showcase/danmux.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T10:55:23-04:00 +description: "" +license: MIT +licenseLink: "" +sitelink: http://danmux.com/ +sourceLink: https://github.com/danmux/danmux-hugo +tags: +- personal +- blog +thumbnail: /img/danmux-tn.jpg +title: Danmux +--- + diff --git a/content/site showcase/datapipelinearchitect.md b/content/site showcase/datapipelinearchitect.md new file mode 100644 index 000000000..a74eb835e --- /dev/null +++ b/content/site showcase/datapipelinearchitect.md @@ -0,0 +1,13 @@ +--- +date: 2016-02-04T18:30:07-05:00 +description: "Professional website at datapipelinearchitect.com" +sitelink: http://datapipelinearchitect.com/ +tags: +- company +- tech +- blog +- website +thumbnail: /img/datapipelinearchitect-tn.jpg +title: Data Pipeline Architect +--- + diff --git a/content/site showcase/davidepetilli.md b/content/site showcase/davidepetilli.md new file mode 100644 index 000000000..6b69eee0f --- /dev/null +++ b/content/site showcase/davidepetilli.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-05-25 +date: 2013-11-01T07:32:00Z +description: "" +license: MIT +licenseLink: "" +sitelink: http://davidepetilli.com +tags: +- personal +- photography +- portfolio +- blog +thumbnail: /img/davidepetilli-tn.jpg +title: Davide Petilli +--- + diff --git a/content/site showcase/davidrallen.md b/content/site showcase/davidrallen.md new file mode 100644 index 000000000..06e802fd5 --- /dev/null +++ b/content/site showcase/davidrallen.md @@ -0,0 +1,15 @@ +--- +date: 2016-02-03T11:49:07-05:00 +description: "Personal website for David Allen" +license: "MIT" +licenseLink: "https://opensource.org/licenses/MIT" +sitelink: http://davidrallen.com/ +sourceLink: https://github.com/doctorallen/davidrallen.com +tags: +- personal +- blog +- tech +thumbnail: /img/davidrallen-tn.png +title: David Allen +--- + diff --git a/content/site showcase/davidyates.md b/content/site showcase/davidyates.md new file mode 100644 index 000000000..0d6063ad4 --- /dev/null +++ b/content/site showcase/davidyates.md @@ -0,0 +1,13 @@ +--- +date: 2016-09-10T07:07:39+02:00 +description: "David Yates" +license: "" +licenseLink: "" +sitelink: https://davidyat.es/ +tags: +- personal +- blog +thumbnail: /img/davidyates-tn.png +title: David Yates +--- + diff --git a/content/site showcase/devmonk.md b/content/site showcase/devmonk.md new file mode 100644 index 000000000..00a1a7572 --- /dev/null +++ b/content/site showcase/devmonk.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T11:31:02-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: https://devmonk.com/ +sourceLink: https://github.com/peteraba/devmonk.com +tags: +- educational +- video +thumbnail: /img/devmonk-tn.jpg +title: devmonk +--- + diff --git a/content/site showcase/dmitriid.com.md b/content/site showcase/dmitriid.com.md new file mode 100644 index 000000000..2a5e308ba --- /dev/null +++ b/content/site showcase/dmitriid.com.md @@ -0,0 +1,14 @@ +--- +date: 2016-10-19T16:52:28+02:00 +description: "Personal blog" +license: "CC BY-NC 4.0" +licenseLink: "" +sitelink: http://dmitriid.com/ +sourceLink: https://github.com/dmitriid/dmitriid.com +tags: +- personal +- blog +thumbnail: /img/dmitriid.com.png +title: dmitriid.com +--- + diff --git a/content/site showcase/emilyhorsman.com.md b/content/site showcase/emilyhorsman.com.md new file mode 100644 index 000000000..8e792f716 --- /dev/null +++ b/content/site showcase/emilyhorsman.com.md @@ -0,0 +1,13 @@ +--- +lastmod: 2016-01-09 +date: 2016-01-09T01:00:10Z +description: Personal homepage +sitelink: https://emilyhorsman.com/ +sourceLink: https://github.com/emilyhorsman/buttercup +tags: +- personal +- blog +thumbnail: /img/emilyhorsman.com-tn.jpg +title: emilyhorsman.com +--- + diff --git a/content/site showcase/esolia-com.md b/content/site showcase/esolia-com.md new file mode 100644 index 000000000..58a482f51 --- /dev/null +++ b/content/site showcase/esolia-com.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-08-08 +date: 2015-07-07T04:32:00Z +description: Tokyo IT service provider eSolia Inc's Hugo-powered website. +license: MIT +licenseLink: "" +sitelink: http://esolia.com/ +sourceLink: https://github.com/eSolia/eSolia +tags: +- company +- esolia +- rickcogley +- japan +thumbnail: /img/esolia_com-tn.png +title: eSolia.com +--- diff --git a/content/site showcase/esolia-pro.md b/content/site showcase/esolia-pro.md new file mode 100644 index 000000000..24b06b1f8 --- /dev/null +++ b/content/site showcase/esolia-pro.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-08-08 +date: 2015-07-07T04:32:00Z +description: Tokyo IT service provider eSolia Inc's eSolia.pro blog site, powered by Hugo. +license: MIT +licenseLink: "" +sitelink: http://esolia.pro/ +sourceLink: https://github.com/eSolia/eSolia.pro +tags: +- company +- esolia +- rickcogley +- japan +thumbnail: /img/esolia_pro-tn.png +title: eSolia.pro +--- diff --git a/content/site showcase/eurie.md b/content/site showcase/eurie.md new file mode 100644 index 000000000..0ab5966f7 --- /dev/null +++ b/content/site showcase/eurie.md @@ -0,0 +1,11 @@ +--- +date: 2016-10-15T23:30:59+09:00 +description: "User guide for euire Desk" +license: "" +licenseLink: "" +sitelink: https://docs.eurie.io +tags: +- documentation +thumbnail: /img/docs.eurie.io-tn.png +title: eurie Desk docs +--- diff --git a/content/site showcase/fale.md b/content/site showcase/fale.md new file mode 100644 index 000000000..449c1cc22 --- /dev/null +++ b/content/site showcase/fale.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-03-01 +date: 2016-03-01T12:38:00Z +description: Fabio Alessandro Locati personal blog. +license: AGPLv3 +licenseLink: "" +sitelink: http://fale.io/ +sourceLink: https://github.com/fale/fale.io +tags: +- personal +- blog +thumbnail: /img/fale-tn.png +title: fale.io +--- + diff --git a/content/site showcase/fixatom.md b/content/site showcase/fixatom.md new file mode 100644 index 000000000..8ba1978d1 --- /dev/null +++ b/content/site showcase/fixatom.md @@ -0,0 +1,13 @@ +--- +date: 2016-10-17T16:19:24+08:00 +description: "a personal blog" +license: "" +licenseLink: "" +sitelink: https://fixatom.com/ +tags: +- personal +- blog +thumbnail: /img/fixatom-tn.png +title: Atom +--- + diff --git a/content/site showcase/fxsitecompat.md b/content/site showcase/fxsitecompat.md new file mode 100644 index 000000000..393b097d9 --- /dev/null +++ b/content/site showcase/fxsitecompat.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-09-08 +date: 2014-08-26T19:40:00-04:00 +description: Multilingual, community documentation and blog site +license: "" +licenseLink: "" +sitelink: https://www.fxsitecompat.com/ +sourceLink: https://github.com/fxsitecompat/www.fxsitecompat.com +tags: +- community +- documentation +- translation +thumbnail: /img/fxsitecompat-tn.png +title: Firefox Site Compatibility +--- + diff --git a/content/site showcase/gntech.md b/content/site showcase/gntech.md new file mode 100644 index 000000000..3d199e931 --- /dev/null +++ b/content/site showcase/gntech.md @@ -0,0 +1,15 @@ +--- +date: 2016-02-13T21:47:27+01:00 +description: "Projects, music and drawings, the personal web page of Gustav Näslund" +license: "" +licenseLink: "" +sitelink: http://www.gntech.se/ +tags: +- personal +- blog +- projects +- music +- drawings +thumbnail: /img/gntech-tn.png +title: gntech.se +--- diff --git a/content/site showcase/gogb.md b/content/site showcase/gogb.md new file mode 100644 index 000000000..d104741ba --- /dev/null +++ b/content/site showcase/gogb.md @@ -0,0 +1,13 @@ +--- +lastmod: 2015-05-25 +date: 2013-11-01T07:32:00Z +description: "" +license: MIT +licenseLink: "" +sitelink: http://getgb.io +tags: +- project +thumbnail: /img/gogb-tn.jpg +title: GoGB +--- + diff --git a/content/site showcase/goin5minutes.md b/content/site showcase/goin5minutes.md new file mode 100644 index 000000000..ae0c61da3 --- /dev/null +++ b/content/site showcase/goin5minutes.md @@ -0,0 +1,13 @@ +--- +lastmod: 2015-11-20 +date: 2015-11-20T20:46:00Z +description: "Code for Go in 5 Minutes Screencasts" +license: "Apache License 2.0" +licenseLink: "https://github.com/arschles/go-in-5-minutes/blob/master/LICENSE" +sitelink: http://www.goin5minutes.com/ +sourceLink: https://github.com/arschles/go-in-5-minutes/tree/master/www +tags: +- screencasts +thumbnail: /img/goin5minutes-tn.png +title: Go in 5 minutes +--- \ No newline at end of file diff --git a/content/site showcase/h10n.me.md b/content/site showcase/h10n.me.md new file mode 100644 index 000000000..0576edb1f --- /dev/null +++ b/content/site showcase/h10n.me.md @@ -0,0 +1,11 @@ +--- +date: 2016-03-05T14:30:21+01:00 +description: "Personal profile page of Horst Gutmann" +sitelink: http://h10n.me/ +sourceLink: https://github.com/zerok/h10n.me +tags: +- personal +- profile +thumbnail: /img/h10n.me-tn.png +title: h10n.me +--- diff --git a/content/site showcase/hugo.md b/content/site showcase/hugo.md new file mode 100644 index 000000000..f8e8f4c40 --- /dev/null +++ b/content/site showcase/hugo.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-01-27 +date: 2013-07-01T07:32:00Z +description: This site +license: Simpl +licenseLink: "" +sitelink: http://gohugo.io/ +sourceLink: https://github.com/spf13/hugo/tree/master/docs +tags: +- documentation +- bootstrap +thumbnail: /img/hugo-tn.jpg +title: Hugo +--- + diff --git a/content/site showcase/jamescampbell.md b/content/site showcase/jamescampbell.md new file mode 100644 index 000000000..de7fa62a2 --- /dev/null +++ b/content/site showcase/jamescampbell.md @@ -0,0 +1,15 @@ +--- +date: 2016-06-06T14:42:59-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: https://jamescampbell.us/ +sourceLink: https://github.com/jamesacampbell/causes-and-effects-hugo +tags: +- personal +- blog +thumbnail: /img/jamescampbell-tn.png +title: jamescampbell.us +--- + + diff --git a/content/site showcase/jorgennilsson.md b/content/site showcase/jorgennilsson.md new file mode 100644 index 000000000..7821eea7d --- /dev/null +++ b/content/site showcase/jorgennilsson.md @@ -0,0 +1,12 @@ +--- +date: 2016-02-11T23:41:27+01:00 +description: "Personal web site and blog of digital director Jorgen Nilsson" +license: "" +licenseLink: "" +sitelink: http://jorgennilsson.com/ +tags: +- personal +- blog +thumbnail: /img/jorgennilsson-tn.png +title: jorgennilsson.com +--- diff --git a/content/site showcase/kieranhealy.md b/content/site showcase/kieranhealy.md new file mode 100644 index 000000000..f4f32989c --- /dev/null +++ b/content/site showcase/kieranhealy.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-01-27 +date: 2014-02-27T20:35:00Z +description: Kieran Healy's Website +license: "" +licenseLink: "" +sitelink: http://kieranhealy.org/ +sourceLink: https://github.com/kjhealy/kieranhealy.hugo +tags: +- personal +- blog +- academic +thumbnail: /img/kjhealy-tn.jpg +title: Kieran Healy +--- + diff --git a/content/site showcase/klingt-net.md b/content/site showcase/klingt-net.md new file mode 100644 index 000000000..369e44cdb --- /dev/null +++ b/content/site showcase/klingt-net.md @@ -0,0 +1,15 @@ +--- +date: 2016-05-15T23:18:16+02:00 +description: "klingt.net is the personal homepage of Andreas Linz." +license: "" +licenseLink: "" +sitelink: https://klingt.net/ +sourceLink: https://github.com/klingtnet/klingt.net +tags: +- personal +- blog +- programming +thumbnail: /img/klingt-net-tn.png +title: klingt net +--- + diff --git a/content/site showcase/launchcode5.md b/content/site showcase/launchcode5.md new file mode 100644 index 000000000..99bea2cfb --- /dev/null +++ b/content/site showcase/launchcode5.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-01-27 +date: 2014-11-01T07:32:00Z +description: Corporate Site for Launchcode Software Studios +license: Copyright Launchcode Software Studios +licenseLink: "" +sitelink: http://www.launchcode5.com/ +sourceLink: https://github.com/Launchcode5/launchcode5.com +tags: +- bootstrap +thumbnail: /img/launchcode-tn.jpg +title: Launchcode Software Studios +--- + diff --git a/content/site showcase/leepenney.md b/content/site showcase/leepenney.md new file mode 100644 index 000000000..db8bfb45b --- /dev/null +++ b/content/site showcase/leepenney.md @@ -0,0 +1,14 @@ +--- +lastmod: 2016-01-24 +date: 2016-01-24T16:10:00Z +description: Site of author Lee Penney +license: MIT +licenseLink: "" +sitelink: http://leepenney.com/ +tags: +- personal +- website +thumbnail: /img/leepenney-tn.jpg +title: Lee Penney +--- + diff --git a/content/site showcase/leowkahman.md b/content/site showcase/leowkahman.md new file mode 100644 index 000000000..a7ce50418 --- /dev/null +++ b/content/site showcase/leowkahman.md @@ -0,0 +1,12 @@ +--- +date: 2016-07-24T00:00:00+08:00 +description: "Leow Kah Man - Tech Blog" +license: "" +licenseLink: "" +sitelink: https://www.leowkahman.com/ +tags: +- personal +- blog +thumbnail: /img/leowkahman-tn.png +title: Leow Kah Man - Tech Blog +--- \ No newline at end of file diff --git a/content/site showcase/lk4d4.darth.io.md b/content/site showcase/lk4d4.darth.io.md new file mode 100644 index 000000000..a35773380 --- /dev/null +++ b/content/site showcase/lk4d4.darth.io.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-25T18:59:30-04:00 +description: Alexandr Morozov +license: "" +licenseLink: "" +sitelink: http://lk4d4.darth.io/ +sourceLink: https://github.com/LK4D4/lk4d4.darth.io +tags: +- personal +- blog +thumbnail: /img/lk4d4-tn.jpg +title: lk4d4.darth.io +--- + diff --git a/content/site showcase/losslesslife.md b/content/site showcase/losslesslife.md new file mode 100644 index 000000000..5e7158daa --- /dev/null +++ b/content/site showcase/losslesslife.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-11-15 +date: 2015-11-15T11:20:00-08:00 +description: "Losslesslife covers everything high-end and audiophile headphones. Headphones and headphone amplifiers, accessories, how-to guides, and reviews." +sitelink: http://pages.losslesslife.com/ +tags: +- headphones +- electronics +- technical +- reviews +- education +- audiophile +thumbnail: /img/losslesslife-tn.png +title: LosslessLife +--- diff --git a/content/site showcase/mariosanchez.md b/content/site showcase/mariosanchez.md new file mode 100644 index 000000000..99285f871 --- /dev/null +++ b/content/site showcase/mariosanchez.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-06-20 +date: 2015-06-20 +description: "" +license: "" +licenseLink: "" +sitelink: http://mariosanchez.org/ +sourceLink: https://github.com/mariobox/Hugo-Source +tags: +- personal +- blog +thumbnail: /img/mariosanchez-tn.jpg +title: mariosanchez.org +--- diff --git a/content/site showcase/mayan-edms.md b/content/site showcase/mayan-edms.md new file mode 100644 index 000000000..656a6790c --- /dev/null +++ b/content/site showcase/mayan-edms.md @@ -0,0 +1,14 @@ +--- +date: 2016-06-13T19:38:56-04:00 +description: "Free Open Source Document Management System" +license: "Apache 2.0" +licenseLink: "" +sitelink: http://www.mayan-edms.com/ +sourceLink: https://gitlab.com/mayan-edms/website +tags: +- paperless +- floss +thumbnail: /img/mayan-edms-tn.png +title: Mayan EDMS +--- + diff --git a/content/site showcase/michaelwhatcott.md b/content/site showcase/michaelwhatcott.md new file mode 100644 index 000000000..9c5bcd07f --- /dev/null +++ b/content/site showcase/michaelwhatcott.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T11:47:11-04:00 +description: "" +license: Simpl-2.0 +licenseLink: "" +sitelink: http://michaelwhatcott.com/ +sourceLink: https://bitbucket.org/mdwhatcott/michaelwhatcott.com-boilerplate/src +tags: +- personal +- blog +thumbnail: /img/michaelwhatcott-tn.jpg +title: michaelwhatcott +--- + diff --git a/content/site showcase/mongodb-eng-journal.md b/content/site showcase/mongodb-eng-journal.md new file mode 100644 index 000000000..9dc5ea0ad --- /dev/null +++ b/content/site showcase/mongodb-eng-journal.md @@ -0,0 +1,13 @@ +--- +date: 2016-03-09T14:14:16-05:00 +description: "The MongoDB Engineering Journal -- for builders, by builders." +license: "" +licenseLink: "" +sitelink: http://engineering.mongodb.com/ +tags: +- engineering +- blog +thumbnail: /img/mongodb-eng-tn.png +title: The Mongodb Engineering Journal +--- + diff --git a/content/site showcase/mtbhomer.md b/content/site showcase/mtbhomer.md new file mode 100644 index 000000000..a98c59621 --- /dev/null +++ b/content/site showcase/mtbhomer.md @@ -0,0 +1,14 @@ +--- +date: 2016-06-19T11:38:39+02:00 +description: "Personal website Martijn ten Bhömer" +license: "" +licenseLink: "" +sitelink: https://www.mtbhomer.com/ +sourceLink: https://github.com/mtbhomer/web-portfolio +tags: +- personal +- portfolio +- design +thumbnail: /img/mtbhomer-tn.png +title: mtbhomer.com +--- diff --git a/content/site showcase/nickoneill.md b/content/site showcase/nickoneill.md new file mode 100644 index 000000000..405a9f945 --- /dev/null +++ b/content/site showcase/nickoneill.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T12:15:48-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: http://blog.nickoneill.name/ +sourceLink: https://github.com/nickoneill/blog.nickoneill.name +tags: +- personal +- blog +thumbnail: /img/nickoneill-tn.jpg +title: authenticgeek +--- + diff --git a/content/site showcase/ninjaducks.in.md b/content/site showcase/ninjaducks.in.md new file mode 100644 index 000000000..46be436fc --- /dev/null +++ b/content/site showcase/ninjaducks.in.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-10-24 +date: 2015-10-24T14:06:00+05:30 +description: Personal blog +license: "" +licenseLink: "" +sitelink: http://ninjaducks.in +sourceLink: https://github.com/shivanshuag/shivanshuag.github.io/tree/new +tags: +- personal +- blog +thumbnail: /img/ninjaducks-tn.png +title: ninjaducks.in +--- diff --git a/content/site showcase/ninya.io.md b/content/site showcase/ninya.io.md new file mode 100644 index 000000000..a7ac4fe99 --- /dev/null +++ b/content/site showcase/ninya.io.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T09:47:00-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: http://blog.ninya.io/ +sourceLink: https://github.com/ninya-io/ninya-io.github.io/tree/dev +tags: +- project +- blog +thumbnail: /img/ninya-tn.jpg +title: ninya.io +--- + diff --git a/content/site showcase/nodesk.md b/content/site showcase/nodesk.md new file mode 100644 index 000000000..8656c7ec0 --- /dev/null +++ b/content/site showcase/nodesk.md @@ -0,0 +1,11 @@ +--- +lastmod: 2015-08-26 +date: 2015-08-26T22:33:00Z +description: "NoDesk | All Things Digital Nomad" +sitelink: http://nodesk.co/ +tags: +- digital nomad +- web +thumbnail: /img/nodesk-tn.png +title: nodesk.co +--- diff --git a/content/site showcase/novelist-xyz.md b/content/site showcase/novelist-xyz.md new file mode 100644 index 000000000..e0b59fb41 --- /dev/null +++ b/content/site showcase/novelist-xyz.md @@ -0,0 +1,13 @@ +--- +date: 2016-05-22T17:54:51+08:00 +description: "Peter Y. Chuang - Novelist, Short Story Writer" +license: "" +licenseLink: "" +sitelink: https://novelist.xyz +sourceLink: https://github.com/peterychuang/peterychuang.github.io/tree/source +tags: +- personal +- blog +thumbnail: /img/novelist-xyz.png +title: Peter Y. Chuang +--- diff --git a/content/site showcase/npf.md b/content/site showcase/npf.md new file mode 100644 index 000000000..b11f6cbc4 --- /dev/null +++ b/content/site showcase/npf.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-01-27 +date: 2014-08-21T12:21:18-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: http://npf.io/ +sourceLink: https://github.com/natefinch/npf +tags: +- personal +- blog +thumbnail: /img/npf-tn.jpg +title: npf.io +--- + diff --git a/content/site showcase/peteraba.md b/content/site showcase/peteraba.md new file mode 100644 index 000000000..c00373e54 --- /dev/null +++ b/content/site showcase/peteraba.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T11:30:57-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: https://peteraba.com/ +sourceLink: https://github.com/peteraba/peteraba.com +tags: +- personal +- blog +thumbnail: /img/peteraba-tn.jpg +title: peteraba +--- + diff --git a/content/site showcase/rahulrai.md b/content/site showcase/rahulrai.md new file mode 100644 index 000000000..1970ad683 --- /dev/null +++ b/content/site showcase/rahulrai.md @@ -0,0 +1,13 @@ +--- +date: 2016-10-04T21:01:18+01:00 +description: "My Take on Cloud" +license: "" +licenseLink: "" +sitelink: https://rahulrai.in +sourceLink: https://github.com/moonytheloony/Blog-Web +tags: +- personal +- blog +thumbnail: /img/rahulrai_in-tn.png +title: My Take on Cloud +--- diff --git a/content/site showcase/rakutentech.md b/content/site showcase/rakutentech.md new file mode 100644 index 000000000..b78b3e8b1 --- /dev/null +++ b/content/site showcase/rakutentech.md @@ -0,0 +1,14 @@ +--- +lastmod: 2016-01-20 +date: 2016-01-20T07:32:00Z +description: "" +license: MIT +licenseLink: "" +sitelink: http://techblog.rakuten.co.jp/ +tags: +- company +- blog +thumbnail: /img/rakutentech-tn.png +title: Rakuten Tech Blog +--- + diff --git a/content/site showcase/rdegges.md b/content/site showcase/rdegges.md new file mode 100644 index 000000000..2d7589b60 --- /dev/null +++ b/content/site showcase/rdegges.md @@ -0,0 +1,14 @@ +--- +date: 2016-08-05T15:33:56-07:00 +description: "The personal website of Randall Degges." +license: "Unlicense" +licenseLink: "http://unlicense.org/" +sitelink: https://www.rdegges.com/ +sourceLink: https://github.com/rdegges/rdegges-www +tags: +- personal +- blog +thumbnail: /img/rdegges-tn.png +title: Randall Degges +--- + diff --git a/content/site showcase/readtext.md b/content/site showcase/readtext.md new file mode 100644 index 000000000..330d89ca2 --- /dev/null +++ b/content/site showcase/readtext.md @@ -0,0 +1,12 @@ +--- +lastmod: 2015-11-16 +date: 2015-11-16T08:36:00Z +description: Restored text files +sitelink: http://readtext.org/ +tags: +- textfiles +- reading +thumbnail: /img/readtext-tn.png +title: ReadText +--- + diff --git a/content/site showcase/richardsumilang.md b/content/site showcase/richardsumilang.md new file mode 100644 index 000000000..8d4e97d09 --- /dev/null +++ b/content/site showcase/richardsumilang.md @@ -0,0 +1,17 @@ +--- +lastmod: 2015-09-08 +date: 2015-09-07T00:12:00-07:00 +description: "Personal website dedicated to electronics, programming, and reviews." +license: "MIT" +licenseLink: "https://opensource.org/licenses/MIT" +sitelink: http://richardsumilang.com/ +sourceLink: https://github.com/richardsumilang-blog +tags: +- personal +- blog +- technical +- electronics +- reviews +thumbnail: /img/richardsumilang-tn.png +title: Richard Sumilang - Top Secret Labs +--- diff --git a/content/site showcase/rick-cogley-info.md b/content/site showcase/rick-cogley-info.md new file mode 100644 index 000000000..997a45757 --- /dev/null +++ b/content/site showcase/rick-cogley-info.md @@ -0,0 +1,16 @@ +--- +lastmod: 2016-02-01 +date: 2015-05-20T04:32:00Z +description: Rick Cogley's personal site, powered by Hugo. +license: MIT +licenseLink: "" +sitelink: http://rick.cogley.info/ +sourceLink: https://github.com/RickCogley/RCC-Hugo2015 +tags: +- personal +- blog +- rickcogley +- japan +thumbnail: /img/rick_cogley_info-tn.jpg +title: rick.cogley.info +--- diff --git a/content/site showcase/ridingbytes.md b/content/site showcase/ridingbytes.md new file mode 100644 index 000000000..29fbb2ecf --- /dev/null +++ b/content/site showcase/ridingbytes.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-10-01 +date: 2015-09-27T00:00:00Z +description: Official Company Website +license: "" +licenseLink: "" +sitelink: http://ridingbytes.com/ +tags: +- company +- website +- blog +- tech +thumbnail: /img/ridingbytes-tn.png +title: RIDING BYTES +--- + diff --git a/content/site showcase/robertbasic.md b/content/site showcase/robertbasic.md new file mode 100644 index 000000000..f27cb8d85 --- /dev/null +++ b/content/site showcase/robertbasic.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-03-26 +date: 2016-03-26T17:47:40+01:00 +description: "Robert Basic is a web developer from Serbia." +license: "" +licenseLink: "" +sitelink: http://robertbasic.com/ +sourceLink: https://github.com/robertbasic/robertbasic.com-hugo +tags: +- personal +- blog +thumbnail: /img/robertbasic-tn.jpg +title: Robert Basic's blog +--- + diff --git a/content/site showcase/scottcwilson.md b/content/site showcase/scottcwilson.md new file mode 100644 index 000000000..9d07cf123 --- /dev/null +++ b/content/site showcase/scottcwilson.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-08-08 +date: 2015-07-21T10:00:00Z +description: Personal portfolio, created with Hugo +license: MIT +licenseLink: "" +sitelink: http://scottcwilson.github.io/ +sourceLink: https://github.com/scottcwilson/hugosite +tags: +- personal +- blog +thumbnail: /img/scottcwilson-tn.png +title: scottcwilson.com +--- + diff --git a/content/site showcase/shapeshed.md b/content/site showcase/shapeshed.md new file mode 100644 index 000000000..8e8908d00 --- /dev/null +++ b/content/site showcase/shapeshed.md @@ -0,0 +1,14 @@ +--- +date: 2016-10-10T07:32:00Z +description: Personal blog. +license: "" +licenseLink: "" +sitelink: http://shapeshed.com/ +sourceLink: https://github.com/shapeshed/shapeshed.com +tags: +- personal +- blog +thumbnail: /img/shapeshed-tn.png +title: shapeshed.com +--- + diff --git a/content/site showcase/shelan.md b/content/site showcase/shelan.md new file mode 100644 index 000000000..230b7b04f --- /dev/null +++ b/content/site showcase/shelan.md @@ -0,0 +1,14 @@ +--- +lastmod: 2016-02-07 +date: 2016-02-07T10:30:00Z +description: Shelan's Blog +license: MIT +licenseLink: "" +sitelink: http://shelan.org/ +sourceLink: https://github.com/shelan/my-hugo-site +tags: +- personal +- blog +thumbnail: /img/shelan-tn.png +title: shelan.org +--- \ No newline at end of file diff --git a/content/site showcase/silvergeko.md b/content/site showcase/silvergeko.md new file mode 100644 index 000000000..3e0105f30 --- /dev/null +++ b/content/site showcase/silvergeko.md @@ -0,0 +1,12 @@ +--- +date: 2016-03-28T14:16:59+02:00 +description: "Custom theme of small italian software house" +license: "" +licenseLink: "" +sitelink: http://silvergeko.it/ +tags: +- profesional +thumbnail: /img/silvergeko.jpg +title: Silvergeko +--- + diff --git a/content/site showcase/softinio.md b/content/site showcase/softinio.md new file mode 100644 index 000000000..fdbd5f364 --- /dev/null +++ b/content/site showcase/softinio.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-03-11 +date: 2015-11-29T07:16:53-05:00 +description: Salar Rahmanian Blog +license: MIT +licenseLink: https://raw.githubusercontent.com/softinio/softinio.com/master/LICENSE +sitelink: http://www.softinio.com/ +sourceLink: https://github.com/softinio/softinio.com +tags: +- personal +- technical +- blog +thumbnail: /img/softinio-tn.png +title: Salar Rahmanian +--- diff --git a/content/site showcase/spf13.md b/content/site showcase/spf13.md new file mode 100644 index 000000000..e0b524255 --- /dev/null +++ b/content/site showcase/spf13.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-01-27 +date: 2013-07-01T07:32:00Z +description: The first Hugo powered website. +license: MIT +licenseLink: "" +sitelink: http://spf13.com/ +sourceLink: https://github.com/spf13/spf13.com +tags: +- personal +- blog +thumbnail: /img/spf13-tn.jpg +title: spf13.com +--- + diff --git a/content/site showcase/steambap.md b/content/site showcase/steambap.md new file mode 100644 index 000000000..439c12e8b --- /dev/null +++ b/content/site showcase/steambap.md @@ -0,0 +1,13 @@ +--- +date: 2016-07-28T07:32:00Z +description: Weilin's blog +license: MIT +licenseLink: "" +sitelink: http://weilinshi.org/ +sourceLink: https://github.com/steambap/weilinshi.org +tags: +- personal +- blog +thumbnail: /img/steambap.png +title: weilinshi +--- diff --git a/content/site showcase/stefano.chiodino.md b/content/site showcase/stefano.chiodino.md new file mode 100644 index 000000000..1a6477a91 --- /dev/null +++ b/content/site showcase/stefano.chiodino.md @@ -0,0 +1,14 @@ +--- +date: 2016-05-21T21:25:25+01:00 +description: "Personal site + blog" +license: "" +licenseLink: "" +sitelink: https://stefano.chiodino.uk/ +sourceLink: https://github.com/Draga/go-web +tags: +- personal +- blog +thumbnail: /img/stefano.chiodino-tn.png +title: stefano.chiodino.uk +--- + diff --git a/content/site showcase/stou.md b/content/site showcase/stou.md new file mode 100644 index 000000000..ddd4b313b --- /dev/null +++ b/content/site showcase/stou.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-01-27 +date: 2014-11-23T01:28:16+07:00 +description: "Rasmus Stougaard" +license: "" +licenseLink: "" +sitelink: http://stou.dk/ +sourceLink: "https://github.com/stou/stou.github.io" +tags: +- personal +- blog +thumbnail: /img/stou-tn.png +title: stou.dk +--- + diff --git a/content/site showcase/szymonkatra.md b/content/site showcase/szymonkatra.md new file mode 100644 index 000000000..1be52b94c --- /dev/null +++ b/content/site showcase/szymonkatra.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-07-10 +date: 2015-07-10T16:15:00+01:00 +description: Szymon Katra +license: "" +licenseLink: "" +sitelink: http://szymonkatra.github.io/ +sourceLink: https://github.com/SzymonKatra/SzymonKatra.github.io/tree/master/hugo_project +tags: +- personal +- blog +thumbnail: /img/szymonkatra-tn.png +title: szymonkatra.github.io +--- + diff --git a/content/site showcase/techmadeplain.md b/content/site showcase/techmadeplain.md new file mode 100644 index 000000000..25712751d --- /dev/null +++ b/content/site showcase/techmadeplain.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-01-27 +date: 2014-05-22T19:54:00Z +description: Tech Coaching site +license: "" +licenseLink: "" +sitelink: http://techmadeplain.com/ +tags: +- personal +- blog +thumbnail: /img/techmadeplain-tn.jpg +title: Tech Made Plain +--- + diff --git a/content/site showcase/tendermint.md b/content/site showcase/tendermint.md new file mode 100644 index 000000000..d95e3c090 --- /dev/null +++ b/content/site showcase/tendermint.md @@ -0,0 +1,14 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T09:34:42-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: http://tendermint.com/ +sourceLink: https://github.com/tendermint/tendermint.github.io +tags: +- project +thumbnail: /img/tendermint-tn.jpg +title: tendermint +--- + diff --git a/content/site showcase/thecodeking.md b/content/site showcase/thecodeking.md new file mode 100644 index 000000000..dc70f28cf --- /dev/null +++ b/content/site showcase/thecodeking.md @@ -0,0 +1,13 @@ +--- +date: 2016-10-09T23:06:16+01:00 +description: "Personal site for articles and projects." +license: "" +licenseLink: "" +sitelink: http://thecodeking.co.uk +tags: +- personal +- blog +thumbnail: /img/thecodeking-tn.png +title: thecodeking +--- + diff --git a/content/site showcase/thehome.md b/content/site showcase/thehome.md new file mode 100644 index 000000000..1db5706f3 --- /dev/null +++ b/content/site showcase/thehome.md @@ -0,0 +1,15 @@ +--- +lastmod: 2015-08-08 +date: 2014-12-27T20:00:00+07:00 +description: "Tom Helmer Hansen" +license: "" +licenseLink: "" +sitelink: http://www.thehome.dk/ +sourceLink: "https://github.com/tomhelmer/website-source" +tags: +- personal +- blog +thumbnail: /img/thehome-tn.png +title: thehome.dk +--- + diff --git a/content/site showcase/tutorialonfly.md b/content/site showcase/tutorialonfly.md new file mode 100644 index 000000000..7c975aaa9 --- /dev/null +++ b/content/site showcase/tutorialonfly.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-04-15 +date: 2016-04-15T01:28:16+08:00 +description: "Tutorialonfly.com provide free tutorials in gitbook version online and pdf,epub,mobi etc for offline read, it's a great website built on hugo, thanks spf13 who created hugo" +license: "" +licenseLink: "" +sitelink: https://tutorialonfly.com/ +tags: +- tutorials +- free +- ebook download +- fast +thumbnail: /img/tutorialonfly-tn.jpg +title: Tutorialonfly +--- \ No newline at end of file diff --git a/content/site showcase/ucsb.md b/content/site showcase/ucsb.md new file mode 100644 index 000000000..9f9ff77e7 --- /dev/null +++ b/content/site showcase/ucsb.md @@ -0,0 +1,14 @@ +--- +lastmod: 2014-11-25 +date: 2014-08-26T14:12:55-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: http://philosophy.ucsb.edu/ +sourceLink: https://github.com/ucsbphil/philweb +tags: +- education +thumbnail: /img/ucsb-tn.jpg +title: ucsb +--- + diff --git a/content/site showcase/upbeat.md b/content/site showcase/upbeat.md new file mode 100644 index 000000000..7c5b0fe57 --- /dev/null +++ b/content/site showcase/upbeat.md @@ -0,0 +1,13 @@ +--- +date: 2016-06-12T11:57:53+02:00 +description: "Blog by Rocchi Cesare" +license: "" +licenseLink: "" +sitelink: http://upbeat.it/ +sourceLink: +tags: +- personal +- blog +thumbnail: /img/upbeat.png +title: upbeat +--- diff --git a/content/site showcase/vamp.md b/content/site showcase/vamp.md new file mode 100644 index 000000000..a2591dbb8 --- /dev/null +++ b/content/site showcase/vamp.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-08-08 +date: 2014-06-26T15:45:00Z +description: Vamp.io microservices platform homepage and documentation +license: "Apache 2" +licenseLink: "" +sitelink: http://vamp.io/ +tags: +- tech +- documentation +- company +- api +thumbnail: /img/vamp_landingpage-tn.png +title: Vamp.io +--- + diff --git a/content/site showcase/viglug.org.md b/content/site showcase/viglug.org.md new file mode 100644 index 000000000..a9e78290a --- /dev/null +++ b/content/site showcase/viglug.org.md @@ -0,0 +1,15 @@ +--- +lastmod: 2016-03-01 +date: 2016-03-01T11:20:00Z +description: ViGLug.org is the website of the Linux User Group of Milan Est (Italy) +license: "AGPLv3" +licenseLink: "" +sitelink: http://viglug.org/ +tags: +- tech +- linux +- user group +thumbnail: /img/viglug-tn.png +title: Viglug.org +--- + diff --git a/content/site showcase/vurt.co.md b/content/site showcase/vurt.co.md new file mode 100644 index 000000000..6da6aa09d --- /dev/null +++ b/content/site showcase/vurt.co.md @@ -0,0 +1,15 @@ +--- +lastmod: 2014-08-26 +date: 2014-08-26T12:09:39-04:00 +description: "" +license: "" +licenseLink: "" +sitelink: http://vurt.co.uk/ +sourceLink: https://github.com/gilesp/vurtcouk +tags: +- personal +- blog +thumbnail: /img/vurt.co-tn.jpg +title: vurt.co.uk +--- + diff --git a/content/site showcase/yslow-rules.md b/content/site showcase/yslow-rules.md new file mode 100644 index 000000000..ccc84bfbb --- /dev/null +++ b/content/site showcase/yslow-rules.md @@ -0,0 +1,16 @@ +--- +lastmod: 2015-08-08 +date: 2014-04-07T10:45:00Z +description: Community project of YSlow rules translations +license: MIT License +licenseLink: https://raw.github.com/checkmyws/yslow-rules/master/LICENSE +sitelink: http://checkmyws.github.io/yslow-rules/ +sourceLink: https://github.com/checkmyws/yslow-rules +tags: +- community +- documentation +- translation +thumbnail: /img/yslow-rules-tn.png +title: YSlow Rules +--- + diff --git a/content/site showcase/ysqi.md b/content/site showcase/ysqi.md new file mode 100644 index 000000000..56bf06bd1 --- /dev/null +++ b/content/site showcase/ysqi.md @@ -0,0 +1,13 @@ +--- +date: 2016-03-25T09:05:49+08:00 +description: "虞双齐个人博客" +license: "MIT" +licenseLink: "https://opensource.org/licenses/MIT" +sitelink: https://www.yushuangqi.com/ +sourceLink: https://github.com/ysqi/yushuangqi.com/ +tags: +- personal +- blog +thumbnail: /img/ysqi-blog.png +title: yushuangqi-blog +--- diff --git a/content/site showcase/yulinling.net.md b/content/site showcase/yulinling.net.md new file mode 100644 index 000000000..e85a1ad2f --- /dev/null +++ b/content/site showcase/yulinling.net.md @@ -0,0 +1,14 @@ +--- +lastmod: 2015-12-19 +date: 2015-09-09T21:42:00-04:00 +description: Multilingual, blog +license: "" +licenseLink: "" +sitelink: https://yulinling.net/ +sourceLink: https://bitbucket.org/lynxiayel/yulinling_source_public +tags: +- blog +- documentation +thumbnail: /img/yulinling-tn.png +title: 语林灵 (Yulinling) +--- diff --git a/content/starter kits/_index.md b/content/starter kits/_index.md new file mode 100644 index 000000000..ff04a4644 --- /dev/null +++ b/content/starter kits/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:45:29-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/template functions/_index.md b/content/template functions/_index.md new file mode 100644 index 000000000..7651c426a --- /dev/null +++ b/content/template functions/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:45:42-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/template functions/date.md b/content/template functions/date.md new file mode 100644 index 000000000..5d44004df --- /dev/null +++ b/content/template functions/date.md @@ -0,0 +1,19 @@ +--- +title: date +linktitle: +description: +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- + +Lorem ipsum dolor sit amet, consectetur adipisicing elit. Saepe voluptatum placeat pariatur dolor, distinctio eligendi consequuntur, quis atque natus excepturi quasi libero sed non quisquam nemo veritatis tempore odio aperiam. \ No newline at end of file diff --git a/content/template functions/dateformat.md b/content/template functions/dateformat.md new file mode 100644 index 000000000..fc236ceec --- /dev/null +++ b/content/template functions/dateformat.md @@ -0,0 +1,17 @@ +--- +title: dateFormat +linktitle: +description: +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/template functions/range.md b/content/template functions/range.md new file mode 100644 index 000000000..62c79d83e --- /dev/null +++ b/content/template functions/range.md @@ -0,0 +1,17 @@ +--- +title: range +linktitle: +description: +qr_description: +qr_returns: +date: 2016-11-01 +publishdate: 2016-11-01 +lastmod: 2016-11-01 +weight: +draft: false +type: +layout: +slug: +aliases: [] +notes: +--- \ No newline at end of file diff --git a/content/templating/_index.md b/content/templating/_index.md new file mode 100644 index 000000000..c7c325684 --- /dev/null +++ b/content/templating/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:45:54-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/themes/_index.md b/content/themes/_index.md new file mode 100644 index 000000000..b3c548a58 --- /dev/null +++ b/content/themes/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:46:10-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/content/troubleshooting/_index.md b/content/troubleshooting/_index.md new file mode 100644 index 000000000..395bbfb61 --- /dev/null +++ b/content/troubleshooting/_index.md @@ -0,0 +1,16 @@ +--- +aliases: [] +date: 2016-12-26T06:46:25-06:00 +description: null +draft: false +lastmod: 2017-01-01 +linktitle: null +notes: null +publishdate: 2017-01-01 +qr_description: null +qr_returns: null +slug: null +title: _index +weight: 1 +--- + diff --git a/themes/theme-starter/LICENSE.md b/themes/hugodocs/LICENSE.md similarity index 100% rename from themes/theme-starter/LICENSE.md rename to themes/hugodocs/LICENSE.md diff --git a/themes/hugodocs/archetypes/default.md b/themes/hugodocs/archetypes/default.md new file mode 100644 index 000000000..b5f5d8da3 --- /dev/null +++ b/themes/hugodocs/archetypes/default.md @@ -0,0 +1,17 @@ +--- +title: +linktitle: +description: +qr_description: +qr_returns: +date: 2017-01-01 +publishdate: 2017-01-01 +lastmod: 2017-01-01 +tags: [] +categories: [] +weight: 10 +draft: false +slug: +aliases: [] +notes: +--- diff --git a/themes/hugodocs/archetypes/showcase.md b/themes/hugodocs/archetypes/showcase.md new file mode 100644 index 000000000..fd1c8fdb5 --- /dev/null +++ b/themes/hugodocs/archetypes/showcase.md @@ -0,0 +1,9 @@ +--- +title: +linktitle: +date: 2017-01-01 +publishdate: 2017-01-01 +lastmod: 2017-01-01 +description: "" +comments: +--- \ No newline at end of file diff --git a/themes/theme-starter/data/sectiondescriptions.yml b/themes/hugodocs/data/sectiondescriptions.yml similarity index 100% rename from themes/theme-starter/data/sectiondescriptions.yml rename to themes/hugodocs/data/sectiondescriptions.yml diff --git a/themes/theme-starter/layouts/404.html b/themes/hugodocs/layouts/404.html similarity index 100% rename from themes/theme-starter/layouts/404.html rename to themes/hugodocs/layouts/404.html diff --git a/themes/theme-starter/layouts/_default/baseof.html b/themes/hugodocs/layouts/_default/baseof.html similarity index 100% rename from themes/theme-starter/layouts/_default/baseof.html rename to themes/hugodocs/layouts/_default/baseof.html diff --git a/themes/theme-starter/layouts/_default/list.html b/themes/hugodocs/layouts/_default/list.html similarity index 100% rename from themes/theme-starter/layouts/_default/list.html rename to themes/hugodocs/layouts/_default/list.html diff --git a/themes/theme-starter/layouts/_default/section.html b/themes/hugodocs/layouts/_default/section.html similarity index 100% rename from themes/theme-starter/layouts/_default/section.html rename to themes/hugodocs/layouts/_default/section.html diff --git a/themes/theme-starter/layouts/_default/single.html b/themes/hugodocs/layouts/_default/single.html similarity index 100% rename from themes/theme-starter/layouts/_default/single.html rename to themes/hugodocs/layouts/_default/single.html diff --git a/themes/theme-starter/layouts/_default/taxonomy.html b/themes/hugodocs/layouts/_default/taxonomy.html similarity index 100% rename from themes/theme-starter/layouts/_default/taxonomy.html rename to themes/hugodocs/layouts/_default/taxonomy.html diff --git a/themes/theme-starter/layouts/_default/terms.html b/themes/hugodocs/layouts/_default/terms.html similarity index 100% rename from themes/theme-starter/layouts/_default/terms.html rename to themes/hugodocs/layouts/_default/terms.html diff --git a/themes/theme-starter/layouts/index.html b/themes/hugodocs/layouts/index.html similarity index 71% rename from themes/theme-starter/layouts/index.html rename to themes/hugodocs/layouts/index.html index 1adf4540e..019c06d73 100644 --- a/themes/theme-starter/layouts/index.html +++ b/themes/hugodocs/layouts/index.html @@ -1,5 +1,5 @@ {{ define "main" }}
-

Hugo Theme Starter

+

{{.Site.Title}}

{{ end }} \ No newline at end of file diff --git a/themes/theme-starter/layouts/partials/footer/google-analytics.html b/themes/hugodocs/layouts/partials/footer/google-analytics.html similarity index 100% rename from themes/theme-starter/layouts/partials/footer/google-analytics.html rename to themes/hugodocs/layouts/partials/footer/google-analytics.html diff --git a/themes/hugodocs/layouts/partials/footer/site-scripts.html b/themes/hugodocs/layouts/partials/footer/site-scripts.html new file mode 100644 index 000000000..ea0a51230 --- /dev/null +++ b/themes/hugodocs/layouts/partials/footer/site-scripts.html @@ -0,0 +1,2 @@ +{{if .Site.Params.includejq}}{{end}} + \ No newline at end of file diff --git a/themes/hugodocs/layouts/partials/head/metadata-favicons.html b/themes/hugodocs/layouts/partials/head/metadata-favicons.html new file mode 100644 index 000000000..52ec59ff6 --- /dev/null +++ b/themes/hugodocs/layouts/partials/head/metadata-favicons.html @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/theme-starter/layouts/partials/head/metadata-opengraph.html b/themes/hugodocs/layouts/partials/head/metadata-opengraph.html similarity index 100% rename from themes/theme-starter/layouts/partials/head/metadata-opengraph.html rename to themes/hugodocs/layouts/partials/head/metadata-opengraph.html diff --git a/themes/theme-starter/layouts/partials/head/metadata-prefetch.html b/themes/hugodocs/layouts/partials/head/metadata-prefetch.html similarity index 100% rename from themes/theme-starter/layouts/partials/head/metadata-prefetch.html rename to themes/hugodocs/layouts/partials/head/metadata-prefetch.html diff --git a/themes/theme-starter/layouts/partials/head/metadata-schemaorg.html b/themes/hugodocs/layouts/partials/head/metadata-schemaorg.html similarity index 100% rename from themes/theme-starter/layouts/partials/head/metadata-schemaorg.html rename to themes/hugodocs/layouts/partials/head/metadata-schemaorg.html diff --git a/themes/theme-starter/layouts/partials/head/metadata-standard.html b/themes/hugodocs/layouts/partials/head/metadata-standard.html similarity index 100% rename from themes/theme-starter/layouts/partials/head/metadata-standard.html rename to themes/hugodocs/layouts/partials/head/metadata-standard.html diff --git a/themes/theme-starter/layouts/partials/head/metadata-twitter.html b/themes/hugodocs/layouts/partials/head/metadata-twitter.html similarity index 100% rename from themes/theme-starter/layouts/partials/head/metadata-twitter.html rename to themes/hugodocs/layouts/partials/head/metadata-twitter.html diff --git a/themes/theme-starter/layouts/partials/head/noindex.html b/themes/hugodocs/layouts/partials/head/noindex.html similarity index 100% rename from themes/theme-starter/layouts/partials/head/noindex.html rename to themes/hugodocs/layouts/partials/head/noindex.html diff --git a/themes/theme-starter/layouts/partials/head/site-style.html b/themes/hugodocs/layouts/partials/head/site-style.html similarity index 77% rename from themes/theme-starter/layouts/partials/head/site-style.html rename to themes/hugodocs/layouts/partials/head/site-style.html index f02f7adb3..9a0513b0c 100644 --- a/themes/theme-starter/layouts/partials/head/site-style.html +++ b/themes/hugodocs/layouts/partials/head/site-style.html @@ -1,4 +1,4 @@ - + {{if .Site.Params.usefontawesome}} {{end}} \ No newline at end of file diff --git a/themes/theme-starter/layouts/partials/site-footer.html b/themes/hugodocs/layouts/partials/site-footer.html similarity index 100% rename from themes/theme-starter/layouts/partials/site-footer.html rename to themes/hugodocs/layouts/partials/site-footer.html diff --git a/themes/theme-starter/layouts/partials/site-head.html b/themes/hugodocs/layouts/partials/site-head.html similarity index 100% rename from themes/theme-starter/layouts/partials/site-head.html rename to themes/hugodocs/layouts/partials/site-head.html diff --git a/themes/theme-starter/layouts/partials/site-header.html b/themes/hugodocs/layouts/partials/site-header.html similarity index 52% rename from themes/theme-starter/layouts/partials/site-header.html rename to themes/hugodocs/layouts/partials/site-header.html index ac9aebb18..f384b591b 100644 --- a/themes/theme-starter/layouts/partials/site-header.html +++ b/themes/hugodocs/layouts/partials/site-header.html @@ -1,4 +1,3 @@ -{{- partial "header/google-tag-manager.html" . -}} \ No newline at end of file diff --git a/themes/theme-starter/pipeline/gulpfile.js b/themes/hugodocs/pipeline/gulpfile.js similarity index 90% rename from themes/theme-starter/pipeline/gulpfile.js rename to themes/hugodocs/pipeline/gulpfile.js index 3eca040ed..e8f786c6f 100644 --- a/themes/theme-starter/pipeline/gulpfile.js +++ b/themes/hugodocs/pipeline/gulpfile.js @@ -34,7 +34,7 @@ gulp.task('sass', function() { .pipe(prefix('last 2 versions', '> 1%', 'ie 10', 'Android 2', 'Firefox ESR')) .pipe(plumber()) .pipe(rename('style.min.css')) - .pipe(gulp.dest('../static/assets/css')); + .pipe(gulp.dest('../static/css')); }); gulp.task("image-resize", () => { @@ -44,17 +44,17 @@ gulp.task("image-resize", () => { imageresize({ width: imagefull }), os.cpus().length )) - .pipe(gulp.dest("../static/assets/images")) + .pipe(gulp.dest("../static/images")) .pipe(parallel( imageresize({ width: imagehalf }), os.cpus().length )) - .pipe(gulp.dest("../static/assets/images/_half")) + .pipe(gulp.dest("../static/images/half")) .pipe(parallel( imageresize({ width: imagethumb }), os.cpus().length )) - .pipe(gulp.dest("../static/assets/images/_thumb")); + .pipe(gulp.dest("../static/images/thumb")); }); @@ -71,7 +71,7 @@ gulp.task('scripts', function(cb) { concat('script.min.js'), // sourcemaps.write('.'), uglify(), - gulp.dest('../static/assets/js/') + gulp.dest('../static/js/') ], cb ); diff --git a/themes/theme-starter/pipeline/js/_velocity.min.js b/themes/hugodocs/pipeline/js/_velocity.min.js similarity index 100% rename from themes/theme-starter/pipeline/js/_velocity.min.js rename to themes/hugodocs/pipeline/js/_velocity.min.js diff --git a/themes/theme-starter/pipeline/js/_velocity.ui.min.js b/themes/hugodocs/pipeline/js/_velocity.ui.min.js similarity index 100% rename from themes/theme-starter/pipeline/js/_velocity.ui.min.js rename to themes/hugodocs/pipeline/js/_velocity.ui.min.js diff --git a/themes/theme-starter/pipeline/js/globals.js b/themes/hugodocs/pipeline/js/globals.js similarity index 100% rename from themes/theme-starter/pipeline/js/globals.js rename to themes/hugodocs/pipeline/js/globals.js diff --git a/themes/theme-starter/pipeline/js/scripts/images-extend-markdown-with-classes.js b/themes/hugodocs/pipeline/js/scripts/images-extend-markdown-with-classes.js similarity index 100% rename from themes/theme-starter/pipeline/js/scripts/images-extend-markdown-with-classes.js rename to themes/hugodocs/pipeline/js/scripts/images-extend-markdown-with-classes.js diff --git a/themes/theme-starter/pipeline/js/utils.js b/themes/hugodocs/pipeline/js/utils.js similarity index 100% rename from themes/theme-starter/pipeline/js/utils.js rename to themes/hugodocs/pipeline/js/utils.js diff --git a/themes/theme-starter/pipeline/package.json b/themes/hugodocs/pipeline/package.json similarity index 100% rename from themes/theme-starter/pipeline/package.json rename to themes/hugodocs/pipeline/package.json diff --git a/themes/theme-starter/pipeline/scss/_variables.scss b/themes/hugodocs/pipeline/scss/_variables.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/_variables.scss rename to themes/hugodocs/pipeline/scss/_variables.scss diff --git a/themes/theme-starter/pipeline/scss/abstracts/_animate.scss b/themes/hugodocs/pipeline/scss/abstracts/_animate.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/abstracts/_animate.scss rename to themes/hugodocs/pipeline/scss/abstracts/_animate.scss diff --git a/themes/theme-starter/pipeline/scss/base/_typography.scss b/themes/hugodocs/pipeline/scss/abstracts/_functions.scss old mode 100644 new mode 100755 similarity index 100% rename from themes/theme-starter/pipeline/scss/base/_typography.scss rename to themes/hugodocs/pipeline/scss/abstracts/_functions.scss diff --git a/themes/theme-starter/pipeline/scss/abstracts/_mediaqueries.scss b/themes/hugodocs/pipeline/scss/abstracts/_mediaqueries.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/abstracts/_mediaqueries.scss rename to themes/hugodocs/pipeline/scss/abstracts/_mediaqueries.scss diff --git a/themes/theme-starter/pipeline/scss/abstracts/_mixins.scss b/themes/hugodocs/pipeline/scss/abstracts/_mixins.scss similarity index 98% rename from themes/theme-starter/pipeline/scss/abstracts/_mixins.scss rename to themes/hugodocs/pipeline/scss/abstracts/_mixins.scss index 4b5007ad1..2693d1e5d 100755 --- a/themes/theme-starter/pipeline/scss/abstracts/_mixins.scss +++ b/themes/hugodocs/pipeline/scss/abstracts/_mixins.scss @@ -319,7 +319,7 @@ } //Font mixin -@mixin fonts($font: null, $path: '/assets/css/fonts', $weights: 100 200 300 400 500 600 700 800 900, $woff2: false, $italic: true) { +@mixin fonts($font: null, $path: '/css/fonts', $weights: 100 200 300 400 500 600 700 800 900, $woff2: false, $italic: true) { @each $weight in $weights { @font-face { font-family: "#{$font}"; diff --git a/themes/theme-starter/pipeline/scss/base/_fontawesome.scss b/themes/hugodocs/pipeline/scss/base/_fontawesome.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/base/_fontawesome.scss rename to themes/hugodocs/pipeline/scss/base/_fontawesome.scss diff --git a/themes/theme-starter/pipeline/scss/base/_normalize.scss b/themes/hugodocs/pipeline/scss/base/_normalize.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/base/_normalize.scss rename to themes/hugodocs/pipeline/scss/base/_normalize.scss diff --git a/themes/theme-starter/pipeline/scss/components/_buttons.scss b/themes/hugodocs/pipeline/scss/base/_typography.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/components/_buttons.scss rename to themes/hugodocs/pipeline/scss/base/_typography.scss diff --git a/themes/theme-starter/pipeline/scss/components/_lists.scss b/themes/hugodocs/pipeline/scss/components/_buttons.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/components/_lists.scss rename to themes/hugodocs/pipeline/scss/components/_buttons.scss diff --git a/themes/theme-starter/pipeline/scss/layout/_site-footer.scss b/themes/hugodocs/pipeline/scss/components/_lists.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/layout/_site-footer.scss rename to themes/hugodocs/pipeline/scss/components/_lists.scss diff --git a/themes/theme-starter/pipeline/scss/layout/_site-header.scss b/themes/hugodocs/pipeline/scss/layout/_site-footer.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/layout/_site-header.scss rename to themes/hugodocs/pipeline/scss/layout/_site-footer.scss diff --git a/themes/hugodocs/pipeline/scss/layout/_site-header.scss b/themes/hugodocs/pipeline/scss/layout/_site-header.scss new file mode 100644 index 000000000..e69de29bb diff --git a/themes/theme-starter/pipeline/scss/style.scss b/themes/hugodocs/pipeline/scss/style.scss similarity index 100% rename from themes/theme-starter/pipeline/scss/style.scss rename to themes/hugodocs/pipeline/scss/style.scss diff --git a/themes/theme-starter/static/assets/js/script.min.js b/themes/hugodocs/static/assets/js/script.min.js similarity index 100% rename from themes/theme-starter/static/assets/js/script.min.js rename to themes/hugodocs/static/assets/js/script.min.js diff --git a/themes/theme-starter/static/assets/css/fonts/abrilfatface/abrilfatface-regular-webfont.ttf b/themes/hugodocs/static/css/fonts/abrilfatface/abrilfatface-regular-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/abrilfatface/abrilfatface-regular-webfont.ttf rename to themes/hugodocs/static/css/fonts/abrilfatface/abrilfatface-regular-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff b/themes/hugodocs/static/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff rename to themes/hugodocs/static/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff2 b/themes/hugodocs/static/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff2 rename to themes/hugodocs/static/css/fonts/abrilfatface/abrilfatface-regular-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.eot b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.eot similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.eot rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.eot diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.eot b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.eot similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.eot rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.eot diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.ttf b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.woff b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.woff rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.eot b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.eot similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.eot rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.eot diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.eot b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.eot similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.eot rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.eot diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.ttf b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.woff b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.woff rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/courierprime/courierprime-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/courierprime/courierprime-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/fontawesome/FontAwesome.otf b/themes/hugodocs/static/css/fonts/fontawesome/FontAwesome.otf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/fontawesome/FontAwesome.otf rename to themes/hugodocs/static/css/fonts/fontawesome/FontAwesome.otf diff --git a/themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.eot b/themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.eot similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.eot rename to themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.eot diff --git a/themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.svg b/themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.svg similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.svg rename to themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.svg diff --git a/themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.ttf b/themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.ttf rename to themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.woff b/themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.woff rename to themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.woff2 b/themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/fontawesome/fontawesome-webfont.woff2 rename to themes/hugodocs/static/css/fonts/fontawesome/fontawesome-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-webfont.woff b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinsans/josefinsans-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinsans/josefinsans-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-webfont.ttf b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-webfont.woff b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-webfont.woff rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/josefinslab/josefinslab-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/josefinslab/josefinslab-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-100-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-100-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-100-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-100-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-100-italic-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-100-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-100-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-100-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-100-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-100-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-100-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-100-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-100-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-100-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-100-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-300-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-300-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-300-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-400-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-400-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-400-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-600-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-600-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-600-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-600-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-600-italic-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-600-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-600-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-600-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-600-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-600-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-600-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-600-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-600-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-600-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-600-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-700-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-700-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-700-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-900-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-900-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-900-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-900-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-900-italic-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-900-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-900-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-900-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-900-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-900-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-900-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-900-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-900-webfont.ttf b/themes/hugodocs/static/css/fonts/lato/lato-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/lato/lato-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-900-webfont.woff b/themes/hugodocs/static/css/fonts/lato/lato-900-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-900-webfont.woff rename to themes/hugodocs/static/css/fonts/lato/lato-900-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/lato/lato-900-webfont.woff2 b/themes/hugodocs/static/css/fonts/lato/lato-900-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/lato/lato-900-webfont.woff2 rename to themes/hugodocs/static/css/fonts/lato/lato-900-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-900-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-900-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-900-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-900-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-900-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-900-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweather/merriweather-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-webfont.woff b/themes/hugodocs/static/css/fonts/merriweather/merriweather-900-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-900-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweather/merriweather-900-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweather/merriweather-900-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweather/merriweather-900-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-webfont.ttf b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-webfont.ttf rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-webfont.woff b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-webfont.woff rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-webfont.woff2 b/themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/merriweathersans/merriweathersans-800-webfont.woff2 rename to themes/hugodocs/static/css/fonts/merriweathersans/merriweathersans-800-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-100-webfont.ttf b/themes/hugodocs/static/css/fonts/montserrat/montserrat-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-100-webfont.woff b/themes/hugodocs/static/css/fonts/montserrat/montserrat-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-100-webfont.woff rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/montserrat/montserrat-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-300-webfont.ttf b/themes/hugodocs/static/css/fonts/montserrat/montserrat-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-300-webfont.woff b/themes/hugodocs/static/css/fonts/montserrat/montserrat-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-300-webfont.woff rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/montserrat/montserrat-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-400-webfont.ttf b/themes/hugodocs/static/css/fonts/montserrat/montserrat-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-400-webfont.woff b/themes/hugodocs/static/css/fonts/montserrat/montserrat-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-400-webfont.woff rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/montserrat/montserrat-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-600-webfont.ttf b/themes/hugodocs/static/css/fonts/montserrat/montserrat-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-600-webfont.woff b/themes/hugodocs/static/css/fonts/montserrat/montserrat-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-600-webfont.woff rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/montserrat/montserrat-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-700-webfont.ttf b/themes/hugodocs/static/css/fonts/montserrat/montserrat-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-700-webfont.woff b/themes/hugodocs/static/css/fonts/montserrat/montserrat-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-700-webfont.woff rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/montserrat/montserrat-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-800-webfont.ttf b/themes/hugodocs/static/css/fonts/montserrat/montserrat-800-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-800-webfont.ttf rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-800-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-800-webfont.woff b/themes/hugodocs/static/css/fonts/montserrat/montserrat-800-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-800-webfont.woff rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-800-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-800-webfont.woff2 b/themes/hugodocs/static/css/fonts/montserrat/montserrat-800-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/montserrat/montserrat-800-webfont.woff2 rename to themes/hugodocs/static/css/fonts/montserrat/montserrat-800-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-600-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-600-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-italic-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-600-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-600-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-600-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-600-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-800-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-800-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-italic-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-800-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-800-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-800-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-800-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-webfont.ttf b/themes/hugodocs/static/css/fonts/opensans/opensans-800-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-webfont.ttf rename to themes/hugodocs/static/css/fonts/opensans/opensans-800-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-webfont.woff b/themes/hugodocs/static/css/fonts/opensans/opensans-800-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-webfont.woff rename to themes/hugodocs/static/css/fonts/opensans/opensans-800-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-webfont.woff2 b/themes/hugodocs/static/css/fonts/opensans/opensans-800-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/opensans/opensans-800-webfont.woff2 rename to themes/hugodocs/static/css/fonts/opensans/opensans-800-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-webfont.ttf b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-webfont.ttf b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-webfont.ttf b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff2 b/themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff2 rename to themes/hugodocs/static/css/fonts/playfairdisplay/playfairdisplay-900-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/ptsans/ptsans-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/ptsans/ptsans-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptsans/ptsans-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-webfont.ttf b/themes/hugodocs/static/css/fonts/ptsans/ptsans-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-webfont.woff b/themes/hugodocs/static/css/fonts/ptsans/ptsans-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-webfont.woff rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptsans/ptsans-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/ptsans/ptsans-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/ptsans/ptsans-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptsans/ptsans-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-webfont.ttf b/themes/hugodocs/static/css/fonts/ptsans/ptsans-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-webfont.woff b/themes/hugodocs/static/css/fonts/ptsans/ptsans-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-webfont.woff rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptsans/ptsans-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptsans/ptsans-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptsans/ptsans-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/ptserif/ptserif-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/ptserif/ptserif-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptserif/ptserif-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-webfont.ttf b/themes/hugodocs/static/css/fonts/ptserif/ptserif-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-webfont.woff b/themes/hugodocs/static/css/fonts/ptserif/ptserif-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-webfont.woff rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptserif/ptserif-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/ptserif/ptserif-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/ptserif/ptserif-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptserif/ptserif-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-webfont.ttf b/themes/hugodocs/static/css/fonts/ptserif/ptserif-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-webfont.woff b/themes/hugodocs/static/css/fonts/ptserif/ptserif-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-webfont.woff rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/ptserif/ptserif-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/ptserif/ptserif-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/ptserif/ptserif-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-100-italic.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-100-italic.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-100-italic.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-100-italic.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-100-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-100-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-100.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-100.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-100.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-100.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-200-italic.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-200-italic.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-200-italic.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-200-italic.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-200-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-200-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-200-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-200-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-200-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-200-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-200-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-200-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-200.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-200.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-200.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-200.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-italic.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-300-italic.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-italic.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-300-italic.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-italic.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-400-italic.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-italic.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-400-italic.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-400.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-400.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-400.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-400.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-500-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-500-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-500-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-500-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-italic.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-500-italic.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-italic.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-500-italic.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-500-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-500-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-500-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-500-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-500-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-500-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-500-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-600-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-600-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-600-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-600-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-italic.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-600-italic.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-italic.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-600-italic.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-800-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-800-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-800-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-800-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-800-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-800-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-800-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-800-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-800-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-800-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-800-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-800-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-800-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-900-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-900-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-italic-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-900-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-900-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-900-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-900-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-webfont.ttf b/themes/hugodocs/static/css/fonts/raleway/raleway-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/raleway/raleway-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-webfont.woff b/themes/hugodocs/static/css/fonts/raleway/raleway-900-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-webfont.woff rename to themes/hugodocs/static/css/fonts/raleway/raleway-900-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-webfont.woff2 b/themes/hugodocs/static/css/fonts/raleway/raleway-900-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/raleway/raleway-900-webfont.woff2 rename to themes/hugodocs/static/css/fonts/raleway/raleway-900-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-100-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-100-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-italic-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-100-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-100-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-100-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-100-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-500-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-500-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-italic-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-500-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-500-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-500-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-500-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-500-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-500-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-500-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-500-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-500-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-500-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-500-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-900-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-900-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-italic-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-900-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-900-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-900-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-900-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-webfont.ttf b/themes/hugodocs/static/css/fonts/roboto/roboto-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/roboto/roboto-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-webfont.woff b/themes/hugodocs/static/css/fonts/roboto/roboto-900-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-webfont.woff rename to themes/hugodocs/static/css/fonts/roboto/roboto-900-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-webfont.woff2 b/themes/hugodocs/static/css/fonts/roboto/roboto-900-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/roboto/roboto-900-webfont.woff2 rename to themes/hugodocs/static/css/fonts/roboto/roboto-900-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-100-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-100-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-italic-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-100-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-100-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-100-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-100-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-italic-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-300-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-300-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-300-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-300-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-italic-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-400-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-400-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-400-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-400-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-500-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-500-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-italic-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-500-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-500-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-500-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-500-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-500-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-500-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-500-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-500-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-500-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-500-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-500-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-italic-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-700-italic-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-italic-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-700-italic-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-italic-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-700-italic-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-italic-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-700-italic-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-webfont.ttf b/themes/hugodocs/static/css/fonts/robotomono/robotomono-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-webfont.woff b/themes/hugodocs/static/css/fonts/robotomono/robotomono-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-webfont.woff rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotomono/robotomono-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotomono/robotomono-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotomono/robotomono-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-100-webfont.ttf b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-100-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-100-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-100-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-100-webfont.woff b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-100-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-100-webfont.woff rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-100-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-100-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-100-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-100-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-100-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-300-webfont.ttf b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-300-webfont.woff b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-300-webfont.woff rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-400-webfont.ttf b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-400-webfont.woff b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-400-webfont.woff rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-700-webfont.ttf b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-700-webfont.woff b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-700-webfont.woff rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/robotoslab/robotoslab-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/robotoslab/robotoslab-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/robotoslab/robotoslab-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-200-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-200-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-200-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-200-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-200-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-300-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-300-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-400-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-500-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-500-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-500-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-500-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-500-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-600-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-700-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-900-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourcecodepro/sourcecodepro-900-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-200-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-200-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-200-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-200-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-200-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-200-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-200-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-200-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-300-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-300-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-300-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-300-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-300-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-300-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-300-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-300-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-400-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-400-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-400-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-400-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-400-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-600-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-600-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-600-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-600-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-600-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-700-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-700-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-700-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-700-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-700-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-900-italic-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-900-italic-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-900-italic-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-900-italic-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-900-webfont.ttf b/themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-900-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourcesanspro/sourcesanspro-900-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourcesanspro/sourcesanspro-900-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-400-webfont.ttf b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-400-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-400-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-400-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-400-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-600-webfont.ttf b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-600-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-600-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-600-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-600-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-700-webfont.ttf b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-700-webfont.ttf similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-700-webfont.ttf rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-700-webfont.ttf diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff diff --git a/themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff2 b/themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff2 similarity index 100% rename from themes/theme-starter/static/assets/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff2 rename to themes/hugodocs/static/css/fonts/sourceserifpro/sourceserifpro-700-webfont.woff2 diff --git a/themes/theme-starter/static/assets/css/style.min.css b/themes/hugodocs/static/css/style.min.css similarity index 100% rename from themes/theme-starter/static/assets/css/style.min.css rename to themes/hugodocs/static/css/style.min.css diff --git a/themes/hugodocs/static/images/favicons/android-chrome-192x192.png b/themes/hugodocs/static/images/favicons/android-chrome-192x192.png new file mode 100644 index 000000000..f2811ae18 Binary files /dev/null and b/themes/hugodocs/static/images/favicons/android-chrome-192x192.png differ diff --git a/themes/hugodocs/static/images/favicons/android-chrome-512x512.png b/themes/hugodocs/static/images/favicons/android-chrome-512x512.png new file mode 100644 index 000000000..de4338502 Binary files /dev/null and b/themes/hugodocs/static/images/favicons/android-chrome-512x512.png differ diff --git a/themes/hugodocs/static/images/favicons/apple-touch-icon.png b/themes/hugodocs/static/images/favicons/apple-touch-icon.png new file mode 100644 index 000000000..e15f8b1c7 Binary files /dev/null and b/themes/hugodocs/static/images/favicons/apple-touch-icon.png differ diff --git a/themes/theme-starter/static/assets/images/favicons/browserconfig.xml b/themes/hugodocs/static/images/favicons/browserconfig.xml similarity index 64% rename from themes/theme-starter/static/assets/images/favicons/browserconfig.xml rename to themes/hugodocs/static/images/favicons/browserconfig.xml index 33236006e..4a718762c 100644 --- a/themes/theme-starter/static/assets/images/favicons/browserconfig.xml +++ b/themes/hugodocs/static/images/favicons/browserconfig.xml @@ -3,8 +3,7 @@ - - #ffffff + #2b5797 diff --git a/themes/hugodocs/static/images/favicons/favicon-16x16.png b/themes/hugodocs/static/images/favicons/favicon-16x16.png new file mode 100644 index 000000000..d20106d16 Binary files /dev/null and b/themes/hugodocs/static/images/favicons/favicon-16x16.png differ diff --git a/themes/hugodocs/static/images/favicons/favicon-32x32.png b/themes/hugodocs/static/images/favicons/favicon-32x32.png new file mode 100644 index 000000000..2288d98b1 Binary files /dev/null and b/themes/hugodocs/static/images/favicons/favicon-32x32.png differ diff --git a/themes/hugodocs/static/images/favicons/favicon.ico b/themes/hugodocs/static/images/favicons/favicon.ico new file mode 100644 index 000000000..58048a4e2 Binary files /dev/null and b/themes/hugodocs/static/images/favicons/favicon.ico differ diff --git a/themes/theme-starter/static/assets/images/favicons/manifest.json b/themes/hugodocs/static/images/favicons/manifest.json similarity index 57% rename from themes/theme-starter/static/assets/images/favicons/manifest.json rename to themes/hugodocs/static/images/favicons/manifest.json index 7c4059876..a2e66bbee 100644 --- a/themes/theme-starter/static/assets/images/favicons/manifest.json +++ b/themes/hugodocs/static/images/favicons/manifest.json @@ -1,13 +1,13 @@ { - "name": "Your App", + "name": "Hugo", "icons": [ { - "src": "\/android-chrome-192x192.png", + "src": "\/images\/favicons\/android-chrome-192x192.png", "sizes": "192x192", "type": "image\/png" }, { - "src": "\/android-chrome-512x512.png", + "src": "\/images\/favicons\/android-chrome-512x512.png", "sizes": "512x512", "type": "image\/png" } diff --git a/themes/hugodocs/static/images/favicons/mstile-150x150.png b/themes/hugodocs/static/images/favicons/mstile-150x150.png new file mode 100644 index 000000000..e2bfbfbef Binary files /dev/null and b/themes/hugodocs/static/images/favicons/mstile-150x150.png differ diff --git a/themes/hugodocs/static/images/favicons/safari-pinned-tab.svg b/themes/hugodocs/static/images/favicons/safari-pinned-tab.svg new file mode 100644 index 000000000..c9bf12b9a --- /dev/null +++ b/themes/hugodocs/static/images/favicons/safari-pinned-tab.svg @@ -0,0 +1,43 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + diff --git a/themes/hugodocs/static/images/hugo.png b/themes/hugodocs/static/images/hugo.png new file mode 100755 index 000000000..48acf346c Binary files /dev/null and b/themes/hugodocs/static/images/hugo.png differ diff --git a/themes/hugodocs/static/js/script.min.js b/themes/hugodocs/static/js/script.min.js new file mode 100644 index 000000000..ba1b3931b --- /dev/null +++ b/themes/hugodocs/static/js/script.min.js @@ -0,0 +1 @@ +"use strict";function getMobileOperatingSystem(){var t=navigator.userAgent||navigator.vendor||window.opera;return/windows phone/i.test(t)?"Windows Phone":/android/i.test(t)?"Android":/iPad|iPhone|iPod/.test(t)&&!window.MSStream?"iOS":void 0}function urlize(t){return"string"==typeof t?t.replace(/[^\w\s\-]/gi,"").toLowerCase().replace(" ","-"):t instanceof HTMLElement?t.textContent.replace(/[^\w\s\-]/gi,"").toLowerCase().replace(" ","-"):void 0}var byId=function(t){return document.getElementById(t)},qs=function(t){return document.querySelector(t)},qsa=function(t){return document.querySelectorAll(t)};!function(){function t(t){for(var e=0;e0){var n=t[e].alt.split("class=")[0],i=t[e].alt.split("class=")[1];t[e].setAttribute("alt",n),t[e].classList.add(i)}else if(t[e].alt.indexOf("id=")>0){var n=t[e].alt.split("id=")[0],r=t[e].alt.split("id=")[1];t[e].setAttribute("alt",n),t[e].id=r}}var e=document.querySelectorAll(".body-copy img");e.length<1||t(e)}(); \ No newline at end of file diff --git a/themes/theme-starter/static/assets/js/vendor/jquery-2.2.4.min.js b/themes/hugodocs/static/js/vendor/jquery-2.2.4.min.js similarity index 100% rename from themes/theme-starter/static/assets/js/vendor/jquery-2.2.4.min.js rename to themes/hugodocs/static/js/vendor/jquery-2.2.4.min.js diff --git a/themes/theme-starter/static/assets/js/vendor/lunr.min.js b/themes/hugodocs/static/js/vendor/lunr.min.js similarity index 100% rename from themes/theme-starter/static/assets/js/vendor/lunr.min.js rename to themes/hugodocs/static/js/vendor/lunr.min.js diff --git a/themes/theme-starter/theme.toml b/themes/hugodocs/theme.toml similarity index 60% rename from themes/theme-starter/theme.toml rename to themes/hugodocs/theme.toml index 3bc509cac..a6f812d86 100644 --- a/themes/theme-starter/theme.toml +++ b/themes/hugodocs/theme.toml @@ -1,14 +1,11 @@ -# theme.toml template for a Hugo theme -# See https://github.com/spf13/hugoThemes#themetoml for an example - -name = "Theme Starter" +name = "Hugo Docs" license = "MIT" licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE.md" description = "" -homepage = "http://siteforthistheme.com/" +homepage = "http://gohugo.io/" tags = ["", ""] features = ["", ""] -min_version = 0.17 +min_version = 0.18 [author] name = "Ryan Watters" diff --git a/themes/theme-starter/archetypes/default.md b/themes/theme-starter/archetypes/default.md deleted file mode 100644 index df4879dae..000000000 --- a/themes/theme-starter/archetypes/default.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "" -subtitle: "" -description: "" -image: -date: -publishdate: -expirydate: -comments: ---- diff --git a/themes/theme-starter/layouts/partials/footer/site-scripts.html b/themes/theme-starter/layouts/partials/footer/site-scripts.html deleted file mode 100644 index 5301bb41e..000000000 --- a/themes/theme-starter/layouts/partials/footer/site-scripts.html +++ /dev/null @@ -1,2 +0,0 @@ -{{if .Site.Params.includejq}}{{end}} - \ No newline at end of file diff --git a/themes/theme-starter/layouts/partials/head/metadata-favicons.html b/themes/theme-starter/layouts/partials/head/metadata-favicons.html deleted file mode 100644 index ee50978d6..000000000 --- a/themes/theme-starter/layouts/partials/head/metadata-favicons.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/themes/theme-starter/layouts/partials/header/google-tag-manager.html b/themes/theme-starter/layouts/partials/header/google-tag-manager.html deleted file mode 100644 index 97c1d5a83..000000000 --- a/themes/theme-starter/layouts/partials/header/google-tag-manager.html +++ /dev/null @@ -1,28 +0,0 @@ - -{{ with .Site.Params.addgtm}} - - - -{{end}} \ No newline at end of file diff --git a/themes/theme-starter/static/assets/images/favicons/README.md b/themes/theme-starter/static/assets/images/favicons/README.md deleted file mode 100644 index 6313cbda0..000000000 --- a/themes/theme-starter/static/assets/images/favicons/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Favicons for Your Site - -The easiest way to create a favicon for your site is to visit . Take all the generated images/favicons and place them in `static/assets/images/favicons`. Templating for favicons can be found in `layouts/partials/head/metadata-favicons.html`. \ No newline at end of file diff --git a/themes/theme-starter/static/assets/images/favicons/android-chrome-192x192.png b/themes/theme-starter/static/assets/images/favicons/android-chrome-192x192.png deleted file mode 100644 index 19bdc0fd0..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/android-chrome-192x192.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/android-chrome-512x512.png b/themes/theme-starter/static/assets/images/favicons/android-chrome-512x512.png deleted file mode 100644 index a2bc630a1..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/android-chrome-512x512.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-120x120.png b/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-120x120.png deleted file mode 100644 index 8e94858cb..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-120x120.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-152x152.png b/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-152x152.png deleted file mode 100644 index 3699d2762..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-152x152.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-180x180.png b/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-180x180.png deleted file mode 100644 index a4c9e6676..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-180x180.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-60x60.png b/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-60x60.png deleted file mode 100644 index 6c15a79d5..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-60x60.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-76x76.png b/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-76x76.png deleted file mode 100644 index cb38b6545..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon-76x76.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon.png b/themes/theme-starter/static/assets/images/favicons/apple-touch-icon.png deleted file mode 100644 index a4c9e6676..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/apple-touch-icon.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/favicon-16x16.png b/themes/theme-starter/static/assets/images/favicons/favicon-16x16.png deleted file mode 100644 index 078e539ce..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/favicon-16x16.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/favicon-32x32.png b/themes/theme-starter/static/assets/images/favicons/favicon-32x32.png deleted file mode 100644 index fba6c53d9..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/favicon-32x32.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/favicon.ico b/themes/theme-starter/static/assets/images/favicons/favicon.ico deleted file mode 100644 index 7589d9bc7..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/favicon.ico and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/mstile-144x144.png b/themes/theme-starter/static/assets/images/favicons/mstile-144x144.png deleted file mode 100644 index 5e3a71397..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/mstile-144x144.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/mstile-150x150.png b/themes/theme-starter/static/assets/images/favicons/mstile-150x150.png deleted file mode 100644 index ee1a12b5b..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/mstile-150x150.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/mstile-310x310.png b/themes/theme-starter/static/assets/images/favicons/mstile-310x310.png deleted file mode 100644 index fcf7980ad..000000000 Binary files a/themes/theme-starter/static/assets/images/favicons/mstile-310x310.png and /dev/null differ diff --git a/themes/theme-starter/static/assets/images/favicons/safari-pinned-tab.svg b/themes/theme-starter/static/assets/images/favicons/safari-pinned-tab.svg deleted file mode 100644 index 02dea0383..000000000 --- a/themes/theme-starter/static/assets/images/favicons/safari-pinned-tab.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - - -