first commit
This commit is contained in:
parent
fba13c8af7
commit
3044035144
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
public/
|
||||
resources/
|
||||
Midnight/
|
0
archetypes/.gitkeep
Normal file
0
archetypes/.gitkeep
Normal file
0
assets/.gitkeep
Normal file
0
assets/.gitkeep
Normal file
BIN
assets/images/background.jpg
Normal file
BIN
assets/images/background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 198 KiB |
237
config.toml
Normal file
237
config.toml
Normal file
@ -0,0 +1,237 @@
|
||||
#########################################################
|
||||
## HOW TO EDIT THIS FILE
|
||||
##
|
||||
## Comments beginning with two hashes (##) explain the
|
||||
## configuration option.
|
||||
##
|
||||
## Comments with only one (#) are
|
||||
## commented options that can be uncommented and changed.
|
||||
##
|
||||
## If configuration options scare you, most things can be
|
||||
## left exactly as they are. Be sure to change the
|
||||
## following, if nothing else:
|
||||
## - title
|
||||
## - baseurl
|
||||
## - tagline
|
||||
## - description
|
||||
##
|
||||
## This file may seem long, but it is mostly comments
|
||||
## explaining each of the options. Many options will also
|
||||
## include URLs to more detailed documentation.
|
||||
#########################################################
|
||||
|
||||
languageCode = "en-us"
|
||||
title = "Example Site"
|
||||
baseurl = "http://192.168.1.19"
|
||||
theme = "Midnight"
|
||||
##themesDir = "../.."
|
||||
|
||||
## Allow the use of GitHub-style code fences
|
||||
PygmentsCodeFences = true
|
||||
|
||||
## Apply classes to styled elements instead
|
||||
## Necessary to use the built-in code styles that
|
||||
## automatically change to fit the theme colors
|
||||
PygmentsUseClasses = true
|
||||
|
||||
## Number of posts to show before paginating
|
||||
paginate = 10
|
||||
|
||||
## Enable robots.txt file generation. Highly recommended.
|
||||
enableRobotsTXT = true
|
||||
|
||||
[params]
|
||||
## Tagline of your site. Displays in the header,
|
||||
## just below the title
|
||||
tagline = "Using the Midnight theme"
|
||||
|
||||
## Description of your site - for use in SEO
|
||||
description = "A useful description for search engine results"
|
||||
|
||||
## 'authorbox' enables/disables the authorbox sitewide (can be disabled per page).
|
||||
## 'author' is the name of the default author of all pages (can change per page).
|
||||
## See also: https://bluestnight.com/docs/midnight/users/pages/authorbox/
|
||||
#authorbox = false
|
||||
#author = "Some Guy"
|
||||
|
||||
## Optimize site for HTTP/2. Recommended if your server supports it.
|
||||
http2 = true
|
||||
|
||||
## Enable next/previous page buttons sitewide
|
||||
## See also: https://bluestnight.com/docs/midnight/users/pages/next-prev-page/
|
||||
post_navigation = true
|
||||
|
||||
## Set a site thumbnail/logo that appears next to the site title
|
||||
## Optionally make the corners of the logo rounded by a given amount
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/appearance/#header-thumbnail
|
||||
#thumbnail = "images/thumbnail.png"
|
||||
#thumbnail_radius = "0%"
|
||||
|
||||
## Disable the use of minified JavaScript and CSS
|
||||
## Useful only for debugging purposes
|
||||
#no_minimize = true
|
||||
|
||||
## Set a site-wide notice for all visitors to all pages.
|
||||
alert = """
|
||||
Interested in using Midnight? Check out the [getting started](https://bluestnight.com/guides/midnight/getting-started/)
|
||||
guide and the [user documentation](https://bluestnight.com/docs/midnight/users/) for more information.
|
||||
"""
|
||||
|
||||
## Midnight can integrate custom shortcodes into the theme. For more
|
||||
## about this, see https://bluestnight.com/docs/midnight/developers/
|
||||
|
||||
## Set a custom background image for the site
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/appearance/#custom-background
|
||||
[params.background]
|
||||
## Background image to use on all screen sizes
|
||||
## except those with a smaller image defined.
|
||||
## The file path must be relative to the assets/ directory. For example,
|
||||
## the below file is found at assets/images/background.jpg
|
||||
src = "/images/background.jpg"
|
||||
|
||||
## Background image to use on all medium (< 1024px) and smaller screens
|
||||
#medium_src = "/images/background_medium.jpg"
|
||||
|
||||
## Background image to use on all small (< 640px) and smaller screens
|
||||
#small_src = "/images/background_small.jpg"
|
||||
|
||||
## Set to "contain" to expand image so it is as large as possible while
|
||||
## still fully visible - some background color may also be visible
|
||||
## Set to "cover" to expand image so that it covers all of the background
|
||||
## area - some parts of the image may get cut off due to the screen dimensions
|
||||
## Set to anything else (like "auto") to not stretch the image at all
|
||||
fit = "cover"
|
||||
|
||||
## Defines whether the background should move with the page or stay fixed
|
||||
## in place. Set to `true` to keep it fixed in place.
|
||||
fixed = true
|
||||
|
||||
## Set to true to tile the image vertically and horizontally across the page
|
||||
## Has no effect if 'fit' is set to "contain" or "cover"
|
||||
#tile = false
|
||||
|
||||
## Change the color scheme of the site
|
||||
## The commented out values are the defaults used
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/appearance/#custom-colors
|
||||
#[params.color]
|
||||
#page_background = "#000000"
|
||||
#main_background = "#050505"
|
||||
#alt_background = "#252525"
|
||||
#main_text = "#e2e2e2"
|
||||
#alt_text = "#e2e2e2"
|
||||
#accent = "#2c8cef"
|
||||
#accent_text = "#e2e2e2"
|
||||
|
||||
## Midnight can integrate with various comment providers through the plugin
|
||||
## system. Included is a plugin for Commento.
|
||||
## See also: https://gitlab.com/commento/commento-ce
|
||||
## See also: https://bluestnight.com/docs/midnight/users/pages/comments/
|
||||
## See also: https://bluestnight.com/docs/midnight/developers/comments/
|
||||
#[params.comments]
|
||||
#provider = "commento"
|
||||
#[params.comments.commento]
|
||||
#base_url = "https://comments.example.com"
|
||||
|
||||
## Set custom font styles
|
||||
## Values can be one of the following: "serif", "sans-serif", "slab-serif"
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/appearance/#font-customization
|
||||
#[params.fonts]
|
||||
#header_style = "sans-serif"
|
||||
#body_style = "sans-serif"
|
||||
#print_header_style = "sans-serif"
|
||||
#print_body_style = "serif"
|
||||
|
||||
## Integrate with Iubenda's generated privacy policies and cookie solutions
|
||||
## (policies and consent banners). Items under [params.iubenda.pro] require
|
||||
## a Pro license to use.
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/policies/#iubenda-integration
|
||||
#[params.iubenda]
|
||||
#id = "siteid"
|
||||
#enable_cookie_policy = true
|
||||
#[params.iubenda.pro]
|
||||
#enable_pro = true
|
||||
#enable_cookie_banner = true
|
||||
#site_id = "different id"
|
||||
#prior_consent = true
|
||||
|
||||
## Use Matomo analytics on the site
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/analytics/
|
||||
#[params.matomo]
|
||||
## Enable Matomo analytics
|
||||
#enable = true
|
||||
|
||||
## The root URL of your hosted Matomo instance
|
||||
## Can contain subdirectories like https://example.com/matomo/
|
||||
#host = "https://matomo.example.com"
|
||||
|
||||
## Enable to track users who have JavaScript disabled
|
||||
#track_nojs = true
|
||||
|
||||
## Add a link to the footer for users to opt out of tracking
|
||||
## If ajax is disabled below, redirects users to another page
|
||||
## You can instead manually add the opt-out <iframe> to another
|
||||
## page of use the Ajax solution
|
||||
#enable_optout = true
|
||||
|
||||
## Use the AjaxOptOut plugin to allow users to opt out without leaving
|
||||
## your site. Requires some extra setup (see above link)
|
||||
#enable_ajax = true
|
||||
|
||||
## Add social media icons to the footer of the website
|
||||
## For author-specific social icons that appear in the authorbox,
|
||||
## see https://bluestnight.com/docs/midnight/users/shortcodes/members/#social-links
|
||||
## See also: https://bluestnight.com/docs/midnight/users/site/social-icons/
|
||||
[params.social]
|
||||
gitlab = "BluestNight/Midnight"
|
||||
|
||||
## Options used while generating server configuration files.
|
||||
## See https://bluestnight.com/docs/midnight/users/server/ for more.
|
||||
#[params.server]
|
||||
#https = true
|
||||
#hsts = true
|
||||
#root = "/var/www/example.com
|
||||
|
||||
## Enable/disable sidebar widgets
|
||||
[params.sidebar]
|
||||
## Specify the order you want sidebar widgets to appear in.
|
||||
## Omitted widgets are not displayed. You can also specify names
|
||||
## for your own custom sidebar widgets (see below)
|
||||
disable = false
|
||||
order = [
|
||||
## Enable a Patreon banner that links to your Patreon page
|
||||
## See also: https://bluestnight.com/docs/midnight/users/sidebar/patreon-banner/
|
||||
#"patreon",
|
||||
## Enable a widget with links to multiple methods of support
|
||||
## See also: https://bluestnight.com/docs/midnight/users/sidebar/support/
|
||||
#"support",
|
||||
## Enable a search field
|
||||
## See also: https://bluestnight.com/docs/midnight/users/sidebar/search/
|
||||
"search",
|
||||
## Enable a recent articles list. Can be configured to use a custom section
|
||||
## See also: https://bluestnight.com/docs/midnight/users/sidebar/recent-posts/
|
||||
"recent",
|
||||
## Enable a list of page categories
|
||||
## Will cause errors if no categories are defined
|
||||
"categories",
|
||||
## Enable a "cloud" of page tags ordered by most common
|
||||
## Will cause errors if no tags are defined
|
||||
"taglist"
|
||||
]
|
||||
## Some sidebar widgets require extra configuration, like the Patreon one.
|
||||
## If you use the Patreon widget, replace the quoted "username" with your
|
||||
## Patreon username.
|
||||
#[params.sidebar.patreon]
|
||||
#username = "username"
|
||||
|
||||
## Define output formats for different kinds of pages
|
||||
[outputs]
|
||||
## CSS is required in order for Midnight to generate your stylesheet
|
||||
## RSS is required to allow users to subscribe to a feed of updates
|
||||
## JSON is required for search functionality
|
||||
home = ["HTML", "CSS", "RSS", "JSON"]
|
||||
|
||||
## RSS is required here for section RSS feeds
|
||||
section = ["HTML", "RSS"]
|
||||
|
||||
## RSS is required here for tag/category RSS feeds
|
||||
taxonomy = ["HTML", "RSS"]
|
19
content/about.md
Normal file
19
content/about.md
Normal file
@ -0,0 +1,19 @@
|
||||
+++
|
||||
title = "About Hugo"
|
||||
date = "2014-04-09"
|
||||
menu = "main"
|
||||
weight = 4
|
||||
+++
|
||||
|
||||
Hugo is the **world’s fastest framework for building websites**. It is written in Go.
|
||||
|
||||
It makes use of a variety of open source projects including:
|
||||
|
||||
* https://github.com/russross/blackfriday
|
||||
* https://github.com/alecthomas/chroma
|
||||
* https://github.com/muesli/smartcrop
|
||||
* https://github.com/spf13/cobra
|
||||
* https://github.com/spf13/viper
|
||||
|
||||
Learn more and contribute on [GitHub](https://github.com/gohugoio).
|
||||
|
5
content/post/_index.md
Normal file
5
content/post/_index.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
title = "Posts"
|
||||
menu = "main"
|
||||
weight = 1
|
||||
+++
|
1150
content/post/creating-a-new-theme.md
Normal file
1150
content/post/creating-a-new-theme.md
Normal file
File diff suppressed because it is too large
Load Diff
344
content/post/goisforlovers.md
Normal file
344
content/post/goisforlovers.md
Normal file
@ -0,0 +1,344 @@
|
||||
+++
|
||||
title = "(Hu)go Template Primer"
|
||||
description = ""
|
||||
tags = [
|
||||
"go",
|
||||
"golang",
|
||||
"templates",
|
||||
"themes",
|
||||
"development",
|
||||
]
|
||||
date = "2014-04-02"
|
||||
categories = [
|
||||
"Development",
|
||||
"golang",
|
||||
]
|
||||
+++
|
||||
|
||||
Hugo uses the excellent [Go][] [html/template][gohtmltemplate] library for
|
||||
its template engine. It is an extremely lightweight engine that provides a very
|
||||
small amount of logic. In our experience that it is just the right amount of
|
||||
logic to be able to create a good static website. If you have used other
|
||||
template systems from different languages or frameworks you will find a lot of
|
||||
similarities in Go templates.
|
||||
|
||||
This document is a brief primer on using Go templates. The [Go docs][gohtmltemplate]
|
||||
provide more details.
|
||||
|
||||
## Introduction to Go Templates
|
||||
|
||||
Go templates provide an extremely simple template language. It adheres to the
|
||||
belief that only the most basic of logic belongs in the template or view layer.
|
||||
One consequence of this simplicity is that Go templates parse very quickly.
|
||||
|
||||
A unique characteristic of Go templates is they are content aware. Variables and
|
||||
content will be sanitized depending on the context of where they are used. More
|
||||
details can be found in the [Go docs][gohtmltemplate].
|
||||
|
||||
## Basic Syntax
|
||||
|
||||
Golang templates are HTML files with the addition of variables and
|
||||
functions.
|
||||
|
||||
**Go variables and functions are accessible within {{ }}**
|
||||
|
||||
Accessing a predefined variable "foo":
|
||||
|
||||
{{ foo }}
|
||||
|
||||
**Parameters are separated using spaces**
|
||||
|
||||
Calling the add function with input of 1, 2:
|
||||
|
||||
{{ add 1 2 }}
|
||||
|
||||
**Methods and fields are accessed via dot notation**
|
||||
|
||||
Accessing the Page Parameter "bar"
|
||||
|
||||
{{ .Params.bar }}
|
||||
|
||||
**Parentheses can be used to group items together**
|
||||
|
||||
{{ if or (isset .Params "alt") (isset .Params "caption") }} Caption {{ end }}
|
||||
|
||||
|
||||
## Variables
|
||||
|
||||
Each Go template has a struct (object) made available to it. In hugo each
|
||||
template is passed either a page or a node struct depending on which type of
|
||||
page you are rendering. More details are available on the
|
||||
[variables](/layout/variables) page.
|
||||
|
||||
A variable is accessed by referencing the variable name.
|
||||
|
||||
<title>{{ .Title }}</title>
|
||||
|
||||
Variables can also be defined and referenced.
|
||||
|
||||
{{ $address := "123 Main St."}}
|
||||
{{ $address }}
|
||||
|
||||
|
||||
## Functions
|
||||
|
||||
Go template ship with a few functions which provide basic functionality. The Go
|
||||
template system also provides a mechanism for applications to extend the
|
||||
available functions with their own. [Hugo template
|
||||
functions](/layout/functions) provide some additional functionality we believe
|
||||
are useful for building websites. Functions are called by using their name
|
||||
followed by the required parameters separated by spaces. Template
|
||||
functions cannot be added without recompiling hugo.
|
||||
|
||||
**Example:**
|
||||
|
||||
{{ add 1 2 }}
|
||||
|
||||
## Includes
|
||||
|
||||
When including another template you will pass to it the data it will be
|
||||
able to access. To pass along the current context please remember to
|
||||
include a trailing dot. The templates location will always be starting at
|
||||
the /layout/ directory within Hugo.
|
||||
|
||||
**Example:**
|
||||
|
||||
{{ template "chrome/header.html" . }}
|
||||
|
||||
|
||||
## Logic
|
||||
|
||||
Go templates provide the most basic iteration and conditional logic.
|
||||
|
||||
### Iteration
|
||||
|
||||
Just like in Go, the Go templates make heavy use of range to iterate over
|
||||
a map, array or slice. The following are different examples of how to use
|
||||
range.
|
||||
|
||||
**Example 1: Using Context**
|
||||
|
||||
{{ range array }}
|
||||
{{ . }}
|
||||
{{ end }}
|
||||
|
||||
**Example 2: Declaring value variable name**
|
||||
|
||||
{{range $element := array}}
|
||||
{{ $element }}
|
||||
{{ end }}
|
||||
|
||||
**Example 2: Declaring key and value variable name**
|
||||
|
||||
{{range $index, $element := array}}
|
||||
{{ $index }}
|
||||
{{ $element }}
|
||||
{{ end }}
|
||||
|
||||
### Conditionals
|
||||
|
||||
If, else, with, or, & and provide the framework for handling conditional
|
||||
logic in Go Templates. Like range, each statement is closed with `end`.
|
||||
|
||||
|
||||
Go Templates treat the following values as false:
|
||||
|
||||
* false
|
||||
* 0
|
||||
* any array, slice, map, or string of length zero
|
||||
|
||||
**Example 1: If**
|
||||
|
||||
{{ if isset .Params "title" }}<h4>{{ index .Params "title" }}</h4>{{ end }}
|
||||
|
||||
**Example 2: If -> Else**
|
||||
|
||||
{{ if isset .Params "alt" }}
|
||||
{{ index .Params "alt" }}
|
||||
{{else}}
|
||||
{{ index .Params "caption" }}
|
||||
{{ end }}
|
||||
|
||||
**Example 3: And & Or**
|
||||
|
||||
{{ if and (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
|
||||
|
||||
**Example 4: With**
|
||||
|
||||
An alternative way of writing "if" and then referencing the same value
|
||||
is to use "with" instead. With rebinds the context `.` within its scope,
|
||||
and skips the block if the variable is absent.
|
||||
|
||||
The first example above could be simplified as:
|
||||
|
||||
{{ with .Params.title }}<h4>{{ . }}</h4>{{ end }}
|
||||
|
||||
**Example 5: If -> Else If**
|
||||
|
||||
{{ if isset .Params "alt" }}
|
||||
{{ index .Params "alt" }}
|
||||
{{ else if isset .Params "caption" }}
|
||||
{{ index .Params "caption" }}
|
||||
{{ end }}
|
||||
|
||||
## Pipes
|
||||
|
||||
One of the most powerful components of Go templates is the ability to
|
||||
stack actions one after another. This is done by using pipes. Borrowed
|
||||
from unix pipes, the concept is simple, each pipeline's output becomes the
|
||||
input of the following pipe.
|
||||
|
||||
Because of the very simple syntax of Go templates, the pipe is essential
|
||||
to being able to chain together function calls. One limitation of the
|
||||
pipes is that they only can work with a single value and that value
|
||||
becomes the last parameter of the next pipeline.
|
||||
|
||||
A few simple examples should help convey how to use the pipe.
|
||||
|
||||
**Example 1 :**
|
||||
|
||||
{{ if eq 1 1 }} Same {{ end }}
|
||||
|
||||
is the same as
|
||||
|
||||
{{ eq 1 1 | if }} Same {{ end }}
|
||||
|
||||
It does look odd to place the if at the end, but it does provide a good
|
||||
illustration of how to use the pipes.
|
||||
|
||||
**Example 2 :**
|
||||
|
||||
{{ index .Params "disqus_url" | html }}
|
||||
|
||||
Access the page parameter called "disqus_url" and escape the HTML.
|
||||
|
||||
**Example 3 :**
|
||||
|
||||
{{ if or (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
|
||||
Stuff Here
|
||||
{{ end }}
|
||||
|
||||
Could be rewritten as
|
||||
|
||||
{{ isset .Params "caption" | or isset .Params "title" | or isset .Params "attr" | if }}
|
||||
Stuff Here
|
||||
{{ end }}
|
||||
|
||||
|
||||
## Context (aka. the dot)
|
||||
|
||||
The most easily overlooked concept to understand about Go templates is that {{ . }}
|
||||
always refers to the current context. In the top level of your template this
|
||||
will be the data set made available to it. Inside of a iteration it will have
|
||||
the value of the current item. When inside of a loop the context has changed. .
|
||||
will no longer refer to the data available to the entire page. If you need to
|
||||
access this from within the loop you will likely want to set it to a variable
|
||||
instead of depending on the context.
|
||||
|
||||
**Example:**
|
||||
|
||||
{{ $title := .Site.Title }}
|
||||
{{ range .Params.tags }}
|
||||
<li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a> - {{ $title }} </li>
|
||||
{{ end }}
|
||||
|
||||
Notice how once we have entered the loop the value of {{ . }} has changed. We
|
||||
have defined a variable outside of the loop so we have access to it from within
|
||||
the loop.
|
||||
|
||||
# Hugo Parameters
|
||||
|
||||
Hugo provides the option of passing values to the template language
|
||||
through the site configuration (for sitewide values), or through the meta
|
||||
data of each specific piece of content. You can define any values of any
|
||||
type (supported by your front matter/config format) and use them however
|
||||
you want to inside of your templates.
|
||||
|
||||
|
||||
## Using Content (page) Parameters
|
||||
|
||||
In each piece of content you can provide variables to be used by the
|
||||
templates. This happens in the [front matter](/content/front-matter).
|
||||
|
||||
An example of this is used in this documentation site. Most of the pages
|
||||
benefit from having the table of contents provided. Sometimes the TOC just
|
||||
doesn't make a lot of sense. We've defined a variable in our front matter
|
||||
of some pages to turn off the TOC from being displayed.
|
||||
|
||||
Here is the example front matter:
|
||||
|
||||
```
|
||||
---
|
||||
title: "Permalinks"
|
||||
date: "2013-11-18"
|
||||
aliases:
|
||||
- "/doc/permalinks/"
|
||||
groups: ["extras"]
|
||||
groups_weight: 30
|
||||
notoc: true
|
||||
---
|
||||
```
|
||||
|
||||
Here is the corresponding code inside of the template:
|
||||
|
||||
{{ if not .Params.notoc }}
|
||||
<div id="toc" class="well col-md-4 col-sm-6">
|
||||
{{ .TableOfContents }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
|
||||
|
||||
## Using Site (config) Parameters
|
||||
In your top-level configuration file (eg, `config.yaml`) you can define site
|
||||
parameters, which are values which will be available to you in chrome.
|
||||
|
||||
For instance, you might declare:
|
||||
|
||||
```yaml
|
||||
params:
|
||||
CopyrightHTML: "Copyright © 2013 John Doe. All Rights Reserved."
|
||||
TwitterUser: "spf13"
|
||||
SidebarRecentLimit: 5
|
||||
```
|
||||
|
||||
Within a footer layout, you might then declare a `<footer>` which is only
|
||||
provided if the `CopyrightHTML` parameter is provided, and if it is given,
|
||||
you would declare it to be HTML-safe, so that the HTML entity is not escaped
|
||||
again. This would let you easily update just your top-level config file each
|
||||
January 1st, instead of hunting through your templates.
|
||||
|
||||
```
|
||||
{{if .Site.Params.CopyrightHTML}}<footer>
|
||||
<div class="text-center">{{.Site.Params.CopyrightHTML | safeHtml}}</div>
|
||||
</footer>{{end}}
|
||||
```
|
||||
|
||||
An alternative way of writing the "if" and then referencing the same value
|
||||
is to use "with" instead. With rebinds the context `.` within its scope,
|
||||
and skips the block if the variable is absent:
|
||||
|
||||
```
|
||||
{{with .Site.Params.TwitterUser}}<span class="twitter">
|
||||
<a href="https://twitter.com/{{.}}" rel="author">
|
||||
<img src="/images/twitter.png" width="48" height="48" title="Twitter: {{.}}"
|
||||
alt="Twitter"></a>
|
||||
</span>{{end}}
|
||||
```
|
||||
|
||||
Finally, if you want to pull "magic constants" out of your layouts, you can do
|
||||
so, such as in this example:
|
||||
|
||||
```
|
||||
<nav class="recent">
|
||||
<h1>Recent Posts</h1>
|
||||
<ul>{{range first .Site.Params.SidebarRecentLimit .Site.Recent}}
|
||||
<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
|
||||
{{end}}</ul>
|
||||
</nav>
|
||||
```
|
||||
|
||||
|
||||
[go]: https://golang.org/
|
||||
[gohtmltemplate]: https://golang.org/pkg/html/template/
|
||||
|
89
content/post/hugoisforlovers.md
Normal file
89
content/post/hugoisforlovers.md
Normal file
@ -0,0 +1,89 @@
|
||||
+++
|
||||
title = "Getting Started with Hugo"
|
||||
description = ""
|
||||
tags = [
|
||||
"go",
|
||||
"golang",
|
||||
"hugo",
|
||||
"development",
|
||||
]
|
||||
date = "2014-04-02"
|
||||
categories = [
|
||||
"Development",
|
||||
"golang",
|
||||
]
|
||||
+++
|
||||
|
||||
## Step 1. Install Hugo
|
||||
|
||||
Go to [Hugo releases](https://github.com/spf13/hugo/releases) and download the
|
||||
appropriate version for your OS and architecture.
|
||||
|
||||
Save it somewhere specific as we will be using it in the next step.
|
||||
|
||||
More complete instructions are available at [Install Hugo](https://gohugo.io/getting-started/installing/)
|
||||
|
||||
## Step 2. Build the Docs
|
||||
|
||||
Hugo has its own example site which happens to also be the documentation site
|
||||
you are reading right now.
|
||||
|
||||
Follow the following steps:
|
||||
|
||||
1. Clone the [Hugo repository](http://github.com/spf13/hugo)
|
||||
2. Go into the repo
|
||||
3. Run hugo in server mode and build the docs
|
||||
4. Open your browser to http://localhost:1313
|
||||
|
||||
Corresponding pseudo commands:
|
||||
|
||||
git clone https://github.com/spf13/hugo
|
||||
cd hugo
|
||||
/path/to/where/you/installed/hugo server --source=./docs
|
||||
> 29 pages created
|
||||
> 0 tags index created
|
||||
> in 27 ms
|
||||
> Web Server is available at http://localhost:1313
|
||||
> Press ctrl+c to stop
|
||||
|
||||
Once you've gotten here, follow along the rest of this page on your local build.
|
||||
|
||||
## Step 3. Change the docs site
|
||||
|
||||
Stop the Hugo process by hitting Ctrl+C.
|
||||
|
||||
Now we are going to run hugo again, but this time with hugo in watch mode.
|
||||
|
||||
/path/to/hugo/from/step/1/hugo server --source=./docs --watch
|
||||
> 29 pages created
|
||||
> 0 tags index created
|
||||
> in 27 ms
|
||||
> Web Server is available at http://localhost:1313
|
||||
> Watching for changes in /Users/spf13/Code/hugo/docs/content
|
||||
> Press ctrl+c to stop
|
||||
|
||||
|
||||
Open your [favorite editor](http://vim.spf13.com) and change one of the source
|
||||
content pages. How about changing this very file to *fix the typo*. How about changing this very file to *fix the typo*.
|
||||
|
||||
Content files are found in `docs/content/`. Unless otherwise specified, files
|
||||
are located at the same relative location as the url, in our case
|
||||
`docs/content/overview/quickstart.md`.
|
||||
|
||||
Change and save this file.. Notice what happened in your terminal.
|
||||
|
||||
> Change detected, rebuilding site
|
||||
|
||||
> 29 pages created
|
||||
> 0 tags index created
|
||||
> in 26 ms
|
||||
|
||||
Refresh the browser and observe that the typo is now fixed.
|
||||
|
||||
Notice how quick that was. Try to refresh the site before it's finished building. I double dare you.
|
||||
Having nearly instant feedback enables you to have your creativity flow without waiting for long builds.
|
||||
|
||||
## Step 4. Have fun
|
||||
|
||||
The best way to learn something is to play with it.
|
||||
|
157
content/post/migrate-from-jekyll.md
Normal file
157
content/post/migrate-from-jekyll.md
Normal file
@ -0,0 +1,157 @@
|
||||
---
|
||||
date: 2014-03-10
|
||||
linktitle: Migrating from Jekyll
|
||||
menu:
|
||||
main:
|
||||
parent: tutorials
|
||||
prev: /tutorials/mathjax
|
||||
title: Migrate to Hugo from Jekyll
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## Move static content to `static`
|
||||
Jekyll has a rule that any directory not starting with `_` will be copied as-is to the `_site` output. Hugo keeps all static content under `static`. You should therefore move it all there.
|
||||
With Jekyll, something that looked like
|
||||
|
||||
▾ <root>/
|
||||
▾ images/
|
||||
logo.png
|
||||
|
||||
should become
|
||||
|
||||
▾ <root>/
|
||||
▾ static/
|
||||
▾ images/
|
||||
logo.png
|
||||
|
||||
Additionally, you'll want any files that should reside at the root (such as `CNAME`) to be moved to `static`.
|
||||
|
||||
## Create your Hugo configuration file
|
||||
Hugo can read your configuration as JSON, YAML or TOML. Hugo supports parameters custom configuration too. Refer to the [Hugo configuration documentation](/overview/configuration/) for details.
|
||||
|
||||
## Set your configuration publish folder to `_site`
|
||||
The default is for Jekyll to publish to `_site` and for Hugo to publish to `public`. If, like me, you have [`_site` mapped to a git submodule on the `gh-pages` branch](http://blog.blindgaenger.net/generate_github_pages_in_a_submodule.html), you'll want to do one of two alternatives:
|
||||
|
||||
1. Change your submodule to point to map `gh-pages` to public instead of `_site` (recommended).
|
||||
|
||||
git submodule deinit _site
|
||||
git rm _site
|
||||
git submodule add -b gh-pages git@github.com:your-username/your-repo.git public
|
||||
|
||||
2. Or, change the Hugo configuration to use `_site` instead of `public`.
|
||||
|
||||
{
|
||||
..
|
||||
"publishdir": "_site",
|
||||
..
|
||||
}
|
||||
|
||||
## Convert Jekyll templates to Hugo templates
|
||||
That's the bulk of the work right here. The documentation is your friend. You should refer to [Jekyll's template documentation](http://jekyllrb.com/docs/templates/) if you need to refresh your memory on how you built your blog and [Hugo's template](/layout/templates/) to learn Hugo's way.
|
||||
|
||||
As a single reference data point, converting my templates for [heyitsalex.net](http://heyitsalex.net/) took me no more than a few hours.
|
||||
|
||||
## Convert Jekyll plugins to Hugo shortcodes
|
||||
Jekyll has [plugins](http://jekyllrb.com/docs/plugins/); Hugo has [shortcodes](/doc/shortcodes/). It's fairly trivial to do a port.
|
||||
|
||||
### Implementation
|
||||
As an example, I was using a custom [`image_tag`](https://github.com/alexandre-normand/alexandre-normand/blob/74bb12036a71334fdb7dba84e073382fc06908ec/_plugins/image_tag.rb) plugin to generate figures with caption when running Jekyll. As I read about shortcodes, I found Hugo had a nice built-in shortcode that does exactly the same thing.
|
||||
|
||||
Jekyll's plugin:
|
||||
|
||||
module Jekyll
|
||||
class ImageTag < Liquid::Tag
|
||||
@url = nil
|
||||
@caption = nil
|
||||
@class = nil
|
||||
@link = nil
|
||||
// Patterns
|
||||
IMAGE_URL_WITH_CLASS_AND_CAPTION =
|
||||
IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK = /(\w+)(\s+)((https?:\/\/|\/)(\S+))(\s+)"(.*?)"(\s+)->((https?:\/\/|\/)(\S+))(\s*)/i
|
||||
IMAGE_URL_WITH_CAPTION = /((https?:\/\/|\/)(\S+))(\s+)"(.*?)"/i
|
||||
IMAGE_URL_WITH_CLASS = /(\w+)(\s+)((https?:\/\/|\/)(\S+))/i
|
||||
IMAGE_URL = /((https?:\/\/|\/)(\S+))/i
|
||||
def initialize(tag_name, markup, tokens)
|
||||
super
|
||||
if markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK
|
||||
@class = $1
|
||||
@url = $3
|
||||
@caption = $7
|
||||
@link = $9
|
||||
elsif markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION
|
||||
@class = $1
|
||||
@url = $3
|
||||
@caption = $7
|
||||
elsif markup =~ IMAGE_URL_WITH_CAPTION
|
||||
@url = $1
|
||||
@caption = $5
|
||||
elsif markup =~ IMAGE_URL_WITH_CLASS
|
||||
@class = $1
|
||||
@url = $3
|
||||
elsif markup =~ IMAGE_URL
|
||||
@url = $1
|
||||
end
|
||||
end
|
||||
def render(context)
|
||||
if @class
|
||||
source = "<figure class='#{@class}'>"
|
||||
else
|
||||
source = "<figure>"
|
||||
end
|
||||
if @link
|
||||
source += "<a href=\"#{@link}\">"
|
||||
end
|
||||
source += "<img src=\"#{@url}\">"
|
||||
if @link
|
||||
source += "</a>"
|
||||
end
|
||||
source += "<figcaption>#{@caption}</figcaption>" if @caption
|
||||
source += "</figure>"
|
||||
source
|
||||
end
|
||||
end
|
||||
end
|
||||
Liquid::Template.register_tag('image', Jekyll::ImageTag)
|
||||
|
||||
is written as this Hugo shortcode:
|
||||
|
||||
<!-- image -->
|
||||
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
|
||||
{{ with .Get "link"}}<a href="{{.}}">{{ end }}
|
||||
<img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}"{{ end }} />
|
||||
{{ if .Get "link"}}</a>{{ end }}
|
||||
{{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
|
||||
<figcaption>{{ if isset .Params "title" }}
|
||||
{{ .Get "title" }}{{ end }}
|
||||
{{ if or (.Get "caption") (.Get "attr")}}<p>
|
||||
{{ .Get "caption" }}
|
||||
{{ with .Get "attrlink"}}<a href="{{.}}"> {{ end }}
|
||||
{{ .Get "attr" }}
|
||||
{{ if .Get "attrlink"}}</a> {{ end }}
|
||||
</p> {{ end }}
|
||||
</figcaption>
|
||||
{{ end }}
|
||||
</figure>
|
||||
<!-- image -->
|
||||
|
||||
### Usage
|
||||
I simply changed:
|
||||
|
||||
{% image full http://farm5.staticflickr.com/4136/4829260124_57712e570a_o_d.jpg "One of my favorite touristy-type photos. I secretly waited for the good light while we were "having fun" and took this. Only regret: a stupid pole in the top-left corner of the frame I had to clumsily get rid of at post-processing." ->http://www.flickr.com/photos/alexnormand/4829260124/in/set-72157624547713078/ %}
|
||||
|
||||
to this (this example uses a slightly extended version named `fig`, different than the built-in `figure`):
|
||||
|
||||
{{%/* fig class="full" src="http://farm5.staticflickr.com/4136/4829260124_57712e570a_o_d.jpg" title="One of my favorite touristy-type photos. I secretly waited for the good light while we were having fun and took this. Only regret: a stupid pole in the top-left corner of the frame I had to clumsily get rid of at post-processing." link="http://www.flickr.com/photos/alexnormand/4829260124/in/set-72157624547713078/" */%}}
|
||||
|
||||
As a bonus, the shortcode named parameters are, arguably, more readable.
|
||||
|
||||
## Finishing touches
|
||||
### Fix content
|
||||
Depending on the amount of customization that was done with each post with Jekyll, this step will require more or less effort. There are no hard and fast rules here except that `hugo server --watch` is your friend. Test your changes and fix errors as needed.
|
||||
|
||||
### Clean up
|
||||
You'll want to remove the Jekyll configuration at this point. If you have anything else that isn't used, delete it.
|
||||
|
||||
## A practical example in a diff
|
||||
[Hey, it's Alex](http://heyitsalex.net/) was migrated in less than a _father-with-kids day_ from Jekyll to Hugo. You can see all the changes (and screw-ups) by looking at this [diff](https://github.com/alexandre-normand/alexandre-normand/compare/869d69435bd2665c3fbf5b5c78d4c22759d7613a...b7f6605b1265e83b4b81495423294208cc74d610).
|
||||
|
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
0
isableFastRender/.gitkeep
Normal file
0
isableFastRender/.gitkeep
Normal file
301
isableFastRender/404.html
Normal file
301
isableFastRender/404.html
Normal file
@ -0,0 +1,301 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>404 Page not found</title><meta name="description" itemprop="description" content="A useful description for search engine results" id="desc"><meta name="generator" content="Hugo 0.55.6" /><link rel="canonical" href="http://localhost:1313/404.html">
|
||||
|
||||
|
||||
<link rel="dns-prefetch" href="https://use.fontawesome.com/" />
|
||||
<link rel="preconnect" href="https://use.fontawesome.com/" />
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/js/foundation.min.js"></script>
|
||||
<script type="text/javascript" src="/js/lunr.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/css/foundation.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/dark.min.a2e0a27b84f040c06c153f1811086f6c2703f82371f3533c5ebb5617ad55f808.css" integrity="sha256-ouCie4TwQMBsFT8YEQhvbCcD+CNx81M8XrtWF61V+Ag="><link rel="stylesheet" href="/styles.css" >
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/reset.min.58d4832e34c59f168248179e8f6a0495f3f1ed2cb432fa09597f17f8d2916f62.css" integrity="sha256-WNSDLjTFnxaCSBeej2oElfPx7Sy0MvoJWX8X+NKRb2I="><link rel="stylesheet" href="http://localhost:1313/css/fonts.min.4ffd55649e797a49b8a6d3f70cdd1c97f25a942848a291346dd055c59bd4f010.css" integrity="sha256-T/1VZJ55ekm4ptP3DN0cl/JalChIopE0bdBVxZvU8BA="><link rel="stylesheet" href="http://localhost:1313/css/classes.min.717d03fc567fccb77be4ab35d1ac133e64e2cc160d72af4bf64a7ec26281238d.css" integrity="sha256-cX0D/FZ/zLd75Ks10awTPmTizBYNcq9L9kp+wmKBI40="><link rel="stylesheet" href="http://localhost:1313/css/pagination.min.1c019354f2098f0d34a80aa4c70a37ff5f5eb84a744f30e8af601fd877b142be.css" integrity="sha256-HAGTVPIJjw00qAqkxwo3/19euEp0TzDor2Af2HexQr4="><link rel="stylesheet" href="http://localhost:1313/css/page.min.16c3a4532fcc8cffaa9edb031826dbcfb1008775b0e8b08ada4c7d60aaaa2714.css" integrity="sha256-FsOkUy/MjP+qntsDGCbbz7EAh3Ww6LCK2kx9YKqqJxQ="><link rel="stylesheet" href="http://localhost:1313/css/widgets.min.f86a3fac609b70f8c8746e1a9bf0ee6d7030716a21281e29e0010bd19b4f22d0.css" integrity="sha256-+Go/rGCbcPjIdG4am/DubXAwcWohKB4p4AEL0ZtPItA=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/list.min.98c794b9463ca90b39ad9aa66fd65a2e60ffb9c822b873df28bf5f0389bf2b73.css" integrity="sha256-mMeUuUY8qQs5rZqmb9ZaLmD/ucgiuHPfKL9fA4m/K3M=">
|
||||
|
||||
|
||||
<link rel="preload" media="print" type="text/css" href="http://localhost:1313/css/print.min.2e0961e511885e38a09cc9a9ff3de5ce7d7d2186bb9ed98a61f176688d4ef61a.css" integrity="sha256-Lglh5RGIXjignMmp/z3lzn19IYa7ntmKYfF2aI1O9ho=" as="style"><link rel="dns-prefetch" href="https://cdnjs.cloudflare.com/" />
|
||||
<link rel="preconnect" href="https://cdnjs.cloudflare.com/" />
|
||||
|
||||
<link rel="preload" href="http://localhost:1313/index.json" as="fetch" />
|
||||
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/search.min.5561d0b8fcf8e2a7d3d0fcbe830ba8a5743255be7f849e564d3849a7cc1ba725.css" integrity="sha256-VWHQuPz44qfT0Py+gwuopXQyVb5/hJ5WTThJp8wbpyU=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/taglist.min.59f177c0ac5a5ae6b88ede8a87029d4012b1bdf53e37d2ccf5873832626a77f3.css" integrity="sha256-WfF3wKxaWua4jt6KhwKdQBKxvfU+N9LM9Yc4MmJqd/M=">
|
||||
|
||||
<meta name="theme-color" content="#2073c9">
|
||||
<meta name="apple-mobile-web-app-title" content="Example Site">
|
||||
<meta name="application-name" content="Example Site">
|
||||
|
||||
</head>
|
||||
<body itemscope itemtype="http://schema.org/WebPage">
|
||||
<div class="off-canvas-wrapper">
|
||||
<button id="off-canvas-toggle" type="button" class="button hide-for-medium" aria-label="Open Menu" data-toggle="main-nav-off-canvas">
|
||||
<span class="fas fa-bars"></span>
|
||||
</button>
|
||||
<div class="off-canvas position-left" id="main-nav-off-canvas" data-off-canvas>
|
||||
<nav>
|
||||
<ul class="vertical menu drilldown" data-drilldown><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="site-container" class="grid-container full off-canvas-content">
|
||||
<div class="grid-x full grid-container data-off-canvas-content">
|
||||
<div id="site-header" class="cell">
|
||||
<a href="http://localhost:1313/">
|
||||
<header class="small-text-center medium-text-left grid-x">
|
||||
<div id="site-title-container" class="cell shrink grid-y">
|
||||
<div id="site-title" class="cell shrink" itemprop="name">Example Site</div>
|
||||
<div class="cell shrink" id="site-tagline">Using the Midnight theme</div>
|
||||
</div>
|
||||
</header>
|
||||
</a>
|
||||
<nav id="main-nav" class="small-hide">
|
||||
<ul class="dropdown menu" data-dropdown-menu><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="main-container" class="cell grid-x grid-padding-x grid-container" role="main" itemprop="mainContentOfPage">
|
||||
|
||||
<div class="callout cell text-center">
|
||||
Interested in using Midnight? Check out the <a href="https://bluestnight.com/guides/midnight/getting-started/">getting started</a>
|
||||
guide and the <a href="https://bluestnight.com/docs/midnight/users/">user documentation</a> for more information.
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<main class="cell medium-8">
|
||||
<article id="post-article">
|
||||
<header id="post-header">
|
||||
<h1>Page Not Found</h1>
|
||||
</header>
|
||||
<div id="post-content">
|
||||
<p>We’re sorry, we couldn’t find the page you were looking for. We’ll put our best sleuths to work finding it.</p><p>In the meantime, go ahead and type what you were looking for in the <strong>search bar</strong>, or visit our <a href="http://localhost:1313/">home page</a> and take a look around?<p>
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<aside class="cell small-12 small-order-2 medium-4" itemscope itemtype="http://schema.org/WPSideBar"><div class="widget" id="search-container">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-search fa-xs" aria-hidden></span> Search</span>
|
||||
</header>
|
||||
<input type="search" name="search" id="searchbox" placeholder="Search..." autocomplete="off"/>
|
||||
<div id="search-results" class="grid-y hide"></div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-pencil-alt fa-xs" aria-hidden></span> <a href="http://localhost:1313/post/">Recent Posts</a></span>
|
||||
</header>
|
||||
|
||||
<a class="widget-header-small button" href="http://localhost:1313/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to the Site</a>
|
||||
<ul><li><a href="http://localhost:1313/post/creating-a-new-theme/">Creating a New Theme</a></li><li><a href="http://localhost:1313/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></li><li><a href="http://localhost:1313/post/goisforlovers/">(Hu)go Template Primer</a></li><li><a href="http://localhost:1313/post/hugoisforlovers/">Getting Started with Hugo</a></li></ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header">
|
||||
<span class="fas fa-folder fa-xs" aria-hidden></span>
|
||||
<a href="http://localhost:1313/categories/">Categories</a>
|
||||
</span>
|
||||
</header>
|
||||
<ul><li>
|
||||
<a href="http://localhost:1313/categories/development/">
|
||||
Development
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://localhost:1313/categories/golang/">
|
||||
Golang
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-tags fa-xs" aria-hidden></span> <a href="http://localhost:1313/tags/">Tags</a></span>
|
||||
</header>
|
||||
<div class="grid-x grid-padding-x" id="sidebar-tags"><a class="cell shrink" href="http://localhost:1313/tags/development/" title="development">
|
||||
development
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/go/" title="go">
|
||||
go
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/golang/" title="golang">
|
||||
golang
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/hugo/" title="hugo">
|
||||
hugo
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/templates/" title="templates">
|
||||
templates
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/themes/" title="themes">
|
||||
themes
|
||||
</a></div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
<footer class="cell grid-x full align-middle">
|
||||
<div class="cell medium-4 small-text-center medium-text-left medium-left small-order-1 grid-x">
|
||||
<div class="cell">
|
||||
<small>
|
||||
© 2019
|
||||
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
|
||||
<span itemprop="name">
|
||||
Example Site.
|
||||
</span>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
<div class="cell">
|
||||
<small>
|
||||
Built with <a href="https://gohugo.io">Hugo</a> and <a href="https://bluestnight.com/products/midnight/">Midnight</a>.
|
||||
</small>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="cell medium-4 small-text-center medium-text-center small-order-2 grid-x">
|
||||
|
||||
<div class="cell small-full small-text-center grid-x">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="social-icons" class="grid-x cell medium-4 small-text-center small-order-3 medium-text-right">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://gitlab.com/BluestNight/Midnight" class="cell shrink" rel="me nofollow" title="GitLab" aria-title="Fork me on GitLab!">
|
||||
|
||||
<span class="fa-stack fa-xs">
|
||||
<span class="fas fa-square fa-stack-2x"></span>
|
||||
<span class="fab fa-gitlab fa-stack-1x fa-inverse"></span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/iubenda.min.e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js" integrity="sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU="></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/widgets/search.min.572f332ce215f4f16d9adc8643ebc2c193fcb351d506d92d1769efaf95230773.js" integrity="sha256-Vy8zLOIV9PFtmtyGQ+vCwZP8s1HVBtktF2nvr5UjB3M=" defer></script><script type="text/javascript" src="http://localhost:1313/js/index.min.e22883a04526785bb35feb658da4974c160999432286921d7df30235cc21e4f3.js" integrity="sha256-4iiDoEUmeFuzX+tljaSXTBYJmUMihpIdffMCNcwh5PM=" defer></script>
|
||||
</div>
|
||||
<script>
|
||||
$(document).foundation();
|
||||
</script>
|
||||
<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script></body>
|
||||
</html>
|
332
isableFastRender/about/index.html
Normal file
332
isableFastRender/about/index.html
Normal file
@ -0,0 +1,332 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>About Hugo</title><meta name="description" itemprop="description" content="Hugo is the world’s fastest framework for building websites. It is written in Go. It makes use of a variety of open source projects including: https://github.com/russross/blackfriday https://github.com/alecthomas/chroma https://github.com/muesli/smartcrop https://github.com/spf13/cobra https://github.com/spf13/viper Learn more and contribute on GitHub." id="desc"><meta name="generator" content="Hugo 0.55.6" /><link rel="canonical" href="http://localhost:1313/about/">
|
||||
|
||||
|
||||
<link rel="dns-prefetch" href="https://use.fontawesome.com/" />
|
||||
<link rel="preconnect" href="https://use.fontawesome.com/" />
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/js/foundation.min.js"></script>
|
||||
<script type="text/javascript" src="/js/lunr.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/css/foundation.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/dark.min.a2e0a27b84f040c06c153f1811086f6c2703f82371f3533c5ebb5617ad55f808.css" integrity="sha256-ouCie4TwQMBsFT8YEQhvbCcD+CNx81M8XrtWF61V+Ag="><link rel="stylesheet" href="/styles.css" >
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/reset.min.58d4832e34c59f168248179e8f6a0495f3f1ed2cb432fa09597f17f8d2916f62.css" integrity="sha256-WNSDLjTFnxaCSBeej2oElfPx7Sy0MvoJWX8X+NKRb2I="><link rel="stylesheet" href="http://localhost:1313/css/fonts.min.4ffd55649e797a49b8a6d3f70cdd1c97f25a942848a291346dd055c59bd4f010.css" integrity="sha256-T/1VZJ55ekm4ptP3DN0cl/JalChIopE0bdBVxZvU8BA="><link rel="stylesheet" href="http://localhost:1313/css/classes.min.717d03fc567fccb77be4ab35d1ac133e64e2cc160d72af4bf64a7ec26281238d.css" integrity="sha256-cX0D/FZ/zLd75Ks10awTPmTizBYNcq9L9kp+wmKBI40="><link rel="stylesheet" href="http://localhost:1313/css/pagination.min.1c019354f2098f0d34a80aa4c70a37ff5f5eb84a744f30e8af601fd877b142be.css" integrity="sha256-HAGTVPIJjw00qAqkxwo3/19euEp0TzDor2Af2HexQr4="><link rel="stylesheet" href="http://localhost:1313/css/page.min.16c3a4532fcc8cffaa9edb031826dbcfb1008775b0e8b08ada4c7d60aaaa2714.css" integrity="sha256-FsOkUy/MjP+qntsDGCbbz7EAh3Ww6LCK2kx9YKqqJxQ="><link rel="stylesheet" href="http://localhost:1313/css/widgets.min.f86a3fac609b70f8c8746e1a9bf0ee6d7030716a21281e29e0010bd19b4f22d0.css" integrity="sha256-+Go/rGCbcPjIdG4am/DubXAwcWohKB4p4AEL0ZtPItA=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/single.min.f8c42b40c9487fb9a57081e37af57fd067d349a6442c35c8b511a9d52a3bf502.css" integrity="sha256-+MQrQMlIf7mlcIHjevV/0GfTSaZELDXItRGp1So79QI=">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="preload" media="print" type="text/css" href="http://localhost:1313/css/print.min.2e0961e511885e38a09cc9a9ff3de5ce7d7d2186bb9ed98a61f176688d4ef61a.css" integrity="sha256-Lglh5RGIXjignMmp/z3lzn19IYa7ntmKYfF2aI1O9ho=" as="style"><link rel="dns-prefetch" href="https://cdnjs.cloudflare.com/" />
|
||||
<link rel="preconnect" href="https://cdnjs.cloudflare.com/" />
|
||||
|
||||
<link rel="preload" href="http://localhost:1313/index.json" as="fetch" />
|
||||
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/search.min.5561d0b8fcf8e2a7d3d0fcbe830ba8a5743255be7f849e564d3849a7cc1ba725.css" integrity="sha256-VWHQuPz44qfT0Py+gwuopXQyVb5/hJ5WTThJp8wbpyU=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/taglist.min.59f177c0ac5a5ae6b88ede8a87029d4012b1bdf53e37d2ccf5873832626a77f3.css" integrity="sha256-WfF3wKxaWua4jt6KhwKdQBKxvfU+N9LM9Yc4MmJqd/M=">
|
||||
|
||||
<meta name="theme-color" content="#2073c9">
|
||||
<meta name="apple-mobile-web-app-title" content="Example Site">
|
||||
<meta name="application-name" content="Example Site">
|
||||
|
||||
</head>
|
||||
<body itemscope itemtype="http://schema.org/WebPage">
|
||||
<div class="off-canvas-wrapper">
|
||||
<button id="off-canvas-toggle" type="button" class="button hide-for-medium" aria-label="Open Menu" data-toggle="main-nav-off-canvas">
|
||||
<span class="fas fa-bars"></span>
|
||||
</button>
|
||||
<div class="off-canvas position-left" id="main-nav-off-canvas" data-off-canvas>
|
||||
<nav>
|
||||
<ul class="vertical menu drilldown" data-drilldown><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button active" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="site-container" class="grid-container full off-canvas-content">
|
||||
<div class="grid-x full grid-container data-off-canvas-content">
|
||||
<div id="site-header" class="cell">
|
||||
<a href="http://localhost:1313/">
|
||||
<header class="small-text-center medium-text-left grid-x">
|
||||
<div id="site-title-container" class="cell shrink grid-y">
|
||||
<div id="site-title" class="cell shrink" itemprop="name">Example Site</div>
|
||||
<div class="cell shrink" id="site-tagline">Using the Midnight theme</div>
|
||||
</div>
|
||||
</header>
|
||||
</a>
|
||||
<nav id="main-nav" class="small-hide">
|
||||
<ul class="dropdown menu" data-dropdown-menu><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button active" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="main-container" class="cell grid-x grid-padding-x grid-container" role="main" itemprop="mainContentOfPage">
|
||||
|
||||
<div class="callout cell text-center">
|
||||
Interested in using Midnight? Check out the <a href="https://bluestnight.com/guides/midnight/getting-started/">getting started</a>
|
||||
guide and the <a href="https://bluestnight.com/docs/midnight/users/">user documentation</a> for more information.
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<main class="cell medium-8" >
|
||||
<article id="post-article" itemscope itemtype="http://schema.org/Article" itemref="desc">
|
||||
<header id="page-header">
|
||||
<h1 itemprop="headline">About Hugo</h1><p id="post-metadata" class="grid-x grid-padding-x"><span class="cell shrink">
|
||||
<span class="far fa-clock fa-sm fa-fw" aria-hidden></span>
|
||||
<strong>Published:</strong>
|
||||
<time datetime="2014-04-09" content="2014-04-09" itemprop="datePublished">April 09, 2014</time>
|
||||
</span><span class="cell shrink">
|
||||
<span class="fas fa-book fa-sm fa-fw" aria-hidden></span>
|
||||
<strong>Estimated Reading Time:</strong>
|
||||
~<span itemprop="timeRequired">1 minute</span>
|
||||
</span></p>
|
||||
|
||||
</header>
|
||||
|
||||
<div id="post-content"><span itemprop="articleBody"><p>Hugo is the <strong>world’s fastest framework for building websites</strong>. It is written in Go.</p>
|
||||
|
||||
<p>It makes use of a variety of open source projects including:</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://github.com/russross/blackfriday">https://github.com/russross/blackfriday</a></li>
|
||||
<li><a href="https://github.com/alecthomas/chroma">https://github.com/alecthomas/chroma</a></li>
|
||||
<li><a href="https://github.com/muesli/smartcrop">https://github.com/muesli/smartcrop</a></li>
|
||||
<li><a href="https://github.com/spf13/cobra">https://github.com/spf13/cobra</a></li>
|
||||
<li><a href="https://github.com/spf13/viper">https://github.com/spf13/viper</a></li>
|
||||
</ul>
|
||||
|
||||
<p>Learn more and contribute on <a href="https://github.com/gohugoio">GitHub</a>.</p>
|
||||
|
||||
</span>
|
||||
</div></article>
|
||||
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<aside class="cell small-12 small-order-2 medium-4" itemscope itemtype="http://schema.org/WPSideBar"><div class="widget" id="search-container">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-search fa-xs" aria-hidden></span> Search</span>
|
||||
</header>
|
||||
<input type="search" name="search" id="searchbox" placeholder="Search..." autocomplete="off"/>
|
||||
<div id="search-results" class="grid-y hide"></div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-pencil-alt fa-xs" aria-hidden></span> <a href="http://localhost:1313/post/">Recent Posts</a></span>
|
||||
</header>
|
||||
|
||||
<a class="widget-header-small button" href="http://localhost:1313/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to the Site</a>
|
||||
<ul><li><a href="http://localhost:1313/post/creating-a-new-theme/">Creating a New Theme</a></li><li><a href="http://localhost:1313/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></li><li><a href="http://localhost:1313/post/goisforlovers/">(Hu)go Template Primer</a></li><li><a href="http://localhost:1313/post/hugoisforlovers/">Getting Started with Hugo</a></li></ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header">
|
||||
<span class="fas fa-folder fa-xs" aria-hidden></span>
|
||||
<a href="http://localhost:1313/categories/">Categories</a>
|
||||
</span>
|
||||
</header>
|
||||
<ul><li>
|
||||
<a href="http://localhost:1313/categories/development/">
|
||||
Development
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://localhost:1313/categories/golang/">
|
||||
Golang
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-tags fa-xs" aria-hidden></span> <a href="http://localhost:1313/tags/">Tags</a></span>
|
||||
</header>
|
||||
<div class="grid-x grid-padding-x" id="sidebar-tags"><a class="cell shrink" href="http://localhost:1313/tags/development/" title="development">
|
||||
development
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/go/" title="go">
|
||||
go
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/golang/" title="golang">
|
||||
golang
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/hugo/" title="hugo">
|
||||
hugo
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/templates/" title="templates">
|
||||
templates
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/themes/" title="themes">
|
||||
themes
|
||||
</a></div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
<footer class="cell grid-x full align-middle">
|
||||
<div class="cell medium-4 small-text-center medium-text-left medium-left small-order-1 grid-x">
|
||||
<div class="cell">
|
||||
<small>
|
||||
© 2019
|
||||
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
|
||||
<span itemprop="name">
|
||||
Example Site.
|
||||
</span>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
<div class="cell">
|
||||
<small>
|
||||
Built with <a href="https://gohugo.io">Hugo</a> and <a href="https://bluestnight.com/products/midnight/">Midnight</a>.
|
||||
</small>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="cell medium-4 small-text-center medium-text-center small-order-2 grid-x">
|
||||
|
||||
<div class="cell small-full small-text-center grid-x">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="social-icons" class="grid-x cell medium-4 small-text-center small-order-3 medium-text-right">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://gitlab.com/BluestNight/Midnight" class="cell shrink" rel="me nofollow" title="GitLab" aria-title="Fork me on GitLab!">
|
||||
|
||||
<span class="fa-stack fa-xs">
|
||||
<span class="fas fa-square fa-stack-2x"></span>
|
||||
<span class="fab fa-gitlab fa-stack-1x fa-inverse"></span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/iubenda.min.e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js" integrity="sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU="></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/widgets/search.min.572f332ce215f4f16d9adc8643ebc2c193fcb351d506d92d1769efaf95230773.js" integrity="sha256-Vy8zLOIV9PFtmtyGQ+vCwZP8s1HVBtktF2nvr5UjB3M=" defer></script><script type="text/javascript" src="http://localhost:1313/js/index.min.e22883a04526785bb35feb658da4974c160999432286921d7df30235cc21e4f3.js" integrity="sha256-4iiDoEUmeFuzX+tljaSXTBYJmUMihpIdffMCNcwh5PM=" defer></script>
|
||||
</div>
|
||||
<script>
|
||||
$(document).foundation();
|
||||
</script>
|
||||
<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script></body>
|
||||
</html>
|
336
isableFastRender/categories/development/index.html
Normal file
336
isableFastRender/categories/development/index.html
Normal file
@ -0,0 +1,336 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Development</title><meta name="description" itemprop="description" content="A useful description for search engine results" id="desc"><meta name="generator" content="Hugo 0.55.6" /><link rel="alternate" type="application/rss+xml" title="Example Site Feed" href="http://localhost:1313/categories/development/index.xml"><link rel="canonical" href="http://localhost:1313/categories/development/">
|
||||
|
||||
|
||||
<link rel="dns-prefetch" href="https://use.fontawesome.com/" />
|
||||
<link rel="preconnect" href="https://use.fontawesome.com/" />
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/js/foundation.min.js"></script>
|
||||
<script type="text/javascript" src="/js/lunr.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/css/foundation.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/dark.min.a2e0a27b84f040c06c153f1811086f6c2703f82371f3533c5ebb5617ad55f808.css" integrity="sha256-ouCie4TwQMBsFT8YEQhvbCcD+CNx81M8XrtWF61V+Ag="><link rel="stylesheet" href="/styles.css" >
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/reset.min.58d4832e34c59f168248179e8f6a0495f3f1ed2cb432fa09597f17f8d2916f62.css" integrity="sha256-WNSDLjTFnxaCSBeej2oElfPx7Sy0MvoJWX8X+NKRb2I="><link rel="stylesheet" href="http://localhost:1313/css/fonts.min.4ffd55649e797a49b8a6d3f70cdd1c97f25a942848a291346dd055c59bd4f010.css" integrity="sha256-T/1VZJ55ekm4ptP3DN0cl/JalChIopE0bdBVxZvU8BA="><link rel="stylesheet" href="http://localhost:1313/css/classes.min.717d03fc567fccb77be4ab35d1ac133e64e2cc160d72af4bf64a7ec26281238d.css" integrity="sha256-cX0D/FZ/zLd75Ks10awTPmTizBYNcq9L9kp+wmKBI40="><link rel="stylesheet" href="http://localhost:1313/css/pagination.min.1c019354f2098f0d34a80aa4c70a37ff5f5eb84a744f30e8af601fd877b142be.css" integrity="sha256-HAGTVPIJjw00qAqkxwo3/19euEp0TzDor2Af2HexQr4="><link rel="stylesheet" href="http://localhost:1313/css/page.min.16c3a4532fcc8cffaa9edb031826dbcfb1008775b0e8b08ada4c7d60aaaa2714.css" integrity="sha256-FsOkUy/MjP+qntsDGCbbz7EAh3Ww6LCK2kx9YKqqJxQ="><link rel="stylesheet" href="http://localhost:1313/css/widgets.min.f86a3fac609b70f8c8746e1a9bf0ee6d7030716a21281e29e0010bd19b4f22d0.css" integrity="sha256-+Go/rGCbcPjIdG4am/DubXAwcWohKB4p4AEL0ZtPItA=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/list.min.98c794b9463ca90b39ad9aa66fd65a2e60ffb9c822b873df28bf5f0389bf2b73.css" integrity="sha256-mMeUuUY8qQs5rZqmb9ZaLmD/ucgiuHPfKL9fA4m/K3M=">
|
||||
|
||||
|
||||
<link rel="preload" media="print" type="text/css" href="http://localhost:1313/css/print.min.2e0961e511885e38a09cc9a9ff3de5ce7d7d2186bb9ed98a61f176688d4ef61a.css" integrity="sha256-Lglh5RGIXjignMmp/z3lzn19IYa7ntmKYfF2aI1O9ho=" as="style"><link rel="dns-prefetch" href="https://cdnjs.cloudflare.com/" />
|
||||
<link rel="preconnect" href="https://cdnjs.cloudflare.com/" />
|
||||
|
||||
<link rel="preload" href="http://localhost:1313/index.json" as="fetch" />
|
||||
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/search.min.5561d0b8fcf8e2a7d3d0fcbe830ba8a5743255be7f849e564d3849a7cc1ba725.css" integrity="sha256-VWHQuPz44qfT0Py+gwuopXQyVb5/hJ5WTThJp8wbpyU=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/taglist.min.59f177c0ac5a5ae6b88ede8a87029d4012b1bdf53e37d2ccf5873832626a77f3.css" integrity="sha256-WfF3wKxaWua4jt6KhwKdQBKxvfU+N9LM9Yc4MmJqd/M=">
|
||||
|
||||
<meta name="theme-color" content="#2073c9">
|
||||
<meta name="apple-mobile-web-app-title" content="Example Site">
|
||||
<meta name="application-name" content="Example Site">
|
||||
|
||||
</head>
|
||||
<body itemscope itemtype="http://schema.org/WebPage">
|
||||
<div class="off-canvas-wrapper">
|
||||
<button id="off-canvas-toggle" type="button" class="button hide-for-medium" aria-label="Open Menu" data-toggle="main-nav-off-canvas">
|
||||
<span class="fas fa-bars"></span>
|
||||
</button>
|
||||
<div class="off-canvas position-left" id="main-nav-off-canvas" data-off-canvas>
|
||||
<nav>
|
||||
<ul class="vertical menu drilldown" data-drilldown><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="site-container" class="grid-container full off-canvas-content">
|
||||
<div class="grid-x full grid-container data-off-canvas-content">
|
||||
<div id="site-header" class="cell">
|
||||
<a href="http://localhost:1313/">
|
||||
<header class="small-text-center medium-text-left grid-x">
|
||||
<div id="site-title-container" class="cell shrink grid-y">
|
||||
<div id="site-title" class="cell shrink" itemprop="name">Example Site</div>
|
||||
<div class="cell shrink" id="site-tagline">Using the Midnight theme</div>
|
||||
</div>
|
||||
</header>
|
||||
</a>
|
||||
<nav id="main-nav" class="small-hide">
|
||||
<ul class="dropdown menu" data-dropdown-menu><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="main-container" class="cell grid-x grid-padding-x grid-container" role="main" itemprop="mainContentOfPage">
|
||||
|
||||
<div class="callout cell text-center">
|
||||
Interested in using Midnight? Check out the <a href="https://bluestnight.com/guides/midnight/getting-started/">getting started</a>
|
||||
guide and the <a href="https://bluestnight.com/docs/midnight/users/">user documentation</a> for more information.
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<main id="post-list" class="cell medium-8"><header id="page-header">
|
||||
<h1 id="page-title">Category: Development</h1>
|
||||
</header>
|
||||
<article itemprop="blogPosts" itemscope itemtype="http://schema.org/BlogPosting"><div>
|
||||
<header class="post-list-title">
|
||||
<a href="http://localhost:1313/post/goisforlovers/">
|
||||
<h2 itemprop="headline">(Hu)go Template Primer</h2>
|
||||
</a>
|
||||
<div class="metadata"><div>
|
||||
<span class="far fa-clock" aria-hidden></span>
|
||||
<span class="sr-text">Published: </span>
|
||||
<time datetime="" itemprop="datePublished">April 02, 2014</time>
|
||||
</div></div>
|
||||
</header>
|
||||
<div class="post-list-summary" itemprop="description">
|
||||
<p>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. This document is a brief primer on using Go templates.
|
||||
|
||||
<a href="http://localhost:1313/post/goisforlovers/">
|
||||
[Read more<span class="sr-text"> from (Hu)go Template Primer</span>...]
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
<article itemprop="blogPosts" itemscope itemtype="http://schema.org/BlogPosting"><div>
|
||||
<header class="post-list-title">
|
||||
<a href="http://localhost:1313/post/hugoisforlovers/">
|
||||
<h2 itemprop="headline">Getting Started with Hugo</h2>
|
||||
</a>
|
||||
<div class="metadata"><div>
|
||||
<span class="far fa-clock" aria-hidden></span>
|
||||
<span class="sr-text">Published: </span>
|
||||
<time datetime="" itemprop="datePublished">April 02, 2014</time>
|
||||
</div></div>
|
||||
</header>
|
||||
<div class="post-list-summary" itemprop="description">
|
||||
<p>Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. Save it somewhere specific as we will be using it in the next step. More complete instructions are available at Install Hugo Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. Follow the following steps: Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:
|
||||
|
||||
<a href="http://localhost:1313/post/hugoisforlovers/">
|
||||
[Read more<span class="sr-text"> from Getting Started With Hugo</span>...]
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
<aside class="cell small-12 small-order-2 medium-4" itemscope itemtype="http://schema.org/WPSideBar"><div class="widget" id="search-container">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-search fa-xs" aria-hidden></span> Search</span>
|
||||
</header>
|
||||
<input type="search" name="search" id="searchbox" placeholder="Search..." autocomplete="off"/>
|
||||
<div id="search-results" class="grid-y hide"></div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-pencil-alt fa-xs" aria-hidden></span> <a href="http://localhost:1313/post/">Recent Posts</a></span>
|
||||
</header>
|
||||
|
||||
<a class="widget-header-small button" href="http://localhost:1313/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to the Site</a>
|
||||
<a class="widget-header-small button" href="http://localhost:1313/categories/development/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to Development</a><ul><li><a href="http://localhost:1313/post/creating-a-new-theme/">Creating a New Theme</a></li><li><a href="http://localhost:1313/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></li><li><a href="http://localhost:1313/post/goisforlovers/">(Hu)go Template Primer</a></li><li><a href="http://localhost:1313/post/hugoisforlovers/">Getting Started with Hugo</a></li></ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header">
|
||||
<span class="fas fa-folder fa-xs" aria-hidden></span>
|
||||
<a href="http://localhost:1313/categories/">Categories</a>
|
||||
</span>
|
||||
</header>
|
||||
<ul><li>
|
||||
<a href="http://localhost:1313/categories/development/">
|
||||
Development
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://localhost:1313/categories/golang/">
|
||||
Golang
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-tags fa-xs" aria-hidden></span> <a href="http://localhost:1313/tags/">Tags</a></span>
|
||||
</header>
|
||||
<div class="grid-x grid-padding-x" id="sidebar-tags"><a class="cell shrink" href="http://localhost:1313/tags/development/" title="development">
|
||||
development
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/go/" title="go">
|
||||
go
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/golang/" title="golang">
|
||||
golang
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/hugo/" title="hugo">
|
||||
hugo
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/templates/" title="templates">
|
||||
templates
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/themes/" title="themes">
|
||||
themes
|
||||
</a></div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
<footer class="cell grid-x full align-middle">
|
||||
<div class="cell medium-4 small-text-center medium-text-left medium-left small-order-1 grid-x">
|
||||
<div class="cell">
|
||||
<small>
|
||||
© 2019
|
||||
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
|
||||
<span itemprop="name">
|
||||
Example Site.
|
||||
</span>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
<div class="cell">
|
||||
<small>
|
||||
Built with <a href="https://gohugo.io">Hugo</a> and <a href="https://bluestnight.com/products/midnight/">Midnight</a>.
|
||||
</small>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="cell medium-4 small-text-center medium-text-center small-order-2 grid-x">
|
||||
|
||||
<div class="cell small-full small-text-center grid-x">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="social-icons" class="grid-x cell medium-4 small-text-center small-order-3 medium-text-right">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://gitlab.com/BluestNight/Midnight" class="cell shrink" rel="me nofollow" title="GitLab" aria-title="Fork me on GitLab!">
|
||||
|
||||
<span class="fa-stack fa-xs">
|
||||
<span class="fas fa-square fa-stack-2x"></span>
|
||||
<span class="fab fa-gitlab fa-stack-1x fa-inverse"></span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/iubenda.min.e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js" integrity="sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU="></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/widgets/search.min.572f332ce215f4f16d9adc8643ebc2c193fcb351d506d92d1769efaf95230773.js" integrity="sha256-Vy8zLOIV9PFtmtyGQ+vCwZP8s1HVBtktF2nvr5UjB3M=" defer></script><script type="text/javascript" src="http://localhost:1313/js/index.min.e22883a04526785bb35feb658da4974c160999432286921d7df30235cc21e4f3.js" integrity="sha256-4iiDoEUmeFuzX+tljaSXTBYJmUMihpIdffMCNcwh5PM=" defer></script>
|
||||
</div>
|
||||
<script>
|
||||
$(document).foundation();
|
||||
</script>
|
||||
<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script></body>
|
||||
</html>
|
39
isableFastRender/categories/development/index.xml
Normal file
39
isableFastRender/categories/development/index.xml
Normal file
@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Development on Example Site</title>
|
||||
<link>http://localhost:1313/categories/development/</link>
|
||||
<description>Recent content in Development on Example Site</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate>
|
||||
|
||||
<atom:link href="http://localhost:1313/categories/development/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>(Hu)go Template Primer</title>
|
||||
<link>http://localhost:1313/post/goisforlovers/</link>
|
||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/post/goisforlovers/</guid>
|
||||
<description>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
|
||||
This document is a brief primer on using Go templates.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Getting Started with Hugo</title>
|
||||
<link>http://localhost:1313/post/hugoisforlovers/</link>
|
||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/post/hugoisforlovers/</guid>
|
||||
<description>Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture.
|
||||
Save it somewhere specific as we will be using it in the next step.
|
||||
More complete instructions are available at Install Hugo
|
||||
Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now.
|
||||
Follow the following steps:
|
||||
Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>http://localhost:1313/categories/development/</title><link rel="canonical" href="http://localhost:1313/categories/development/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=http://localhost:1313/categories/development/" /></head></html>
|
336
isableFastRender/categories/golang/index.html
Normal file
336
isableFastRender/categories/golang/index.html
Normal file
@ -0,0 +1,336 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>golang</title><meta name="description" itemprop="description" content="A useful description for search engine results" id="desc"><meta name="generator" content="Hugo 0.55.6" /><link rel="alternate" type="application/rss+xml" title="Example Site Feed" href="http://localhost:1313/categories/golang/index.xml"><link rel="canonical" href="http://localhost:1313/categories/golang/">
|
||||
|
||||
|
||||
<link rel="dns-prefetch" href="https://use.fontawesome.com/" />
|
||||
<link rel="preconnect" href="https://use.fontawesome.com/" />
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/js/foundation.min.js"></script>
|
||||
<script type="text/javascript" src="/js/lunr.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/css/foundation.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/dark.min.a2e0a27b84f040c06c153f1811086f6c2703f82371f3533c5ebb5617ad55f808.css" integrity="sha256-ouCie4TwQMBsFT8YEQhvbCcD+CNx81M8XrtWF61V+Ag="><link rel="stylesheet" href="/styles.css" >
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/reset.min.58d4832e34c59f168248179e8f6a0495f3f1ed2cb432fa09597f17f8d2916f62.css" integrity="sha256-WNSDLjTFnxaCSBeej2oElfPx7Sy0MvoJWX8X+NKRb2I="><link rel="stylesheet" href="http://localhost:1313/css/fonts.min.4ffd55649e797a49b8a6d3f70cdd1c97f25a942848a291346dd055c59bd4f010.css" integrity="sha256-T/1VZJ55ekm4ptP3DN0cl/JalChIopE0bdBVxZvU8BA="><link rel="stylesheet" href="http://localhost:1313/css/classes.min.717d03fc567fccb77be4ab35d1ac133e64e2cc160d72af4bf64a7ec26281238d.css" integrity="sha256-cX0D/FZ/zLd75Ks10awTPmTizBYNcq9L9kp+wmKBI40="><link rel="stylesheet" href="http://localhost:1313/css/pagination.min.1c019354f2098f0d34a80aa4c70a37ff5f5eb84a744f30e8af601fd877b142be.css" integrity="sha256-HAGTVPIJjw00qAqkxwo3/19euEp0TzDor2Af2HexQr4="><link rel="stylesheet" href="http://localhost:1313/css/page.min.16c3a4532fcc8cffaa9edb031826dbcfb1008775b0e8b08ada4c7d60aaaa2714.css" integrity="sha256-FsOkUy/MjP+qntsDGCbbz7EAh3Ww6LCK2kx9YKqqJxQ="><link rel="stylesheet" href="http://localhost:1313/css/widgets.min.f86a3fac609b70f8c8746e1a9bf0ee6d7030716a21281e29e0010bd19b4f22d0.css" integrity="sha256-+Go/rGCbcPjIdG4am/DubXAwcWohKB4p4AEL0ZtPItA=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/list.min.98c794b9463ca90b39ad9aa66fd65a2e60ffb9c822b873df28bf5f0389bf2b73.css" integrity="sha256-mMeUuUY8qQs5rZqmb9ZaLmD/ucgiuHPfKL9fA4m/K3M=">
|
||||
|
||||
|
||||
<link rel="preload" media="print" type="text/css" href="http://localhost:1313/css/print.min.2e0961e511885e38a09cc9a9ff3de5ce7d7d2186bb9ed98a61f176688d4ef61a.css" integrity="sha256-Lglh5RGIXjignMmp/z3lzn19IYa7ntmKYfF2aI1O9ho=" as="style"><link rel="dns-prefetch" href="https://cdnjs.cloudflare.com/" />
|
||||
<link rel="preconnect" href="https://cdnjs.cloudflare.com/" />
|
||||
|
||||
<link rel="preload" href="http://localhost:1313/index.json" as="fetch" />
|
||||
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/search.min.5561d0b8fcf8e2a7d3d0fcbe830ba8a5743255be7f849e564d3849a7cc1ba725.css" integrity="sha256-VWHQuPz44qfT0Py+gwuopXQyVb5/hJ5WTThJp8wbpyU=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/taglist.min.59f177c0ac5a5ae6b88ede8a87029d4012b1bdf53e37d2ccf5873832626a77f3.css" integrity="sha256-WfF3wKxaWua4jt6KhwKdQBKxvfU+N9LM9Yc4MmJqd/M=">
|
||||
|
||||
<meta name="theme-color" content="#2073c9">
|
||||
<meta name="apple-mobile-web-app-title" content="Example Site">
|
||||
<meta name="application-name" content="Example Site">
|
||||
|
||||
</head>
|
||||
<body itemscope itemtype="http://schema.org/WebPage">
|
||||
<div class="off-canvas-wrapper">
|
||||
<button id="off-canvas-toggle" type="button" class="button hide-for-medium" aria-label="Open Menu" data-toggle="main-nav-off-canvas">
|
||||
<span class="fas fa-bars"></span>
|
||||
</button>
|
||||
<div class="off-canvas position-left" id="main-nav-off-canvas" data-off-canvas>
|
||||
<nav>
|
||||
<ul class="vertical menu drilldown" data-drilldown><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="site-container" class="grid-container full off-canvas-content">
|
||||
<div class="grid-x full grid-container data-off-canvas-content">
|
||||
<div id="site-header" class="cell">
|
||||
<a href="http://localhost:1313/">
|
||||
<header class="small-text-center medium-text-left grid-x">
|
||||
<div id="site-title-container" class="cell shrink grid-y">
|
||||
<div id="site-title" class="cell shrink" itemprop="name">Example Site</div>
|
||||
<div class="cell shrink" id="site-tagline">Using the Midnight theme</div>
|
||||
</div>
|
||||
</header>
|
||||
</a>
|
||||
<nav id="main-nav" class="small-hide">
|
||||
<ul class="dropdown menu" data-dropdown-menu><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="main-container" class="cell grid-x grid-padding-x grid-container" role="main" itemprop="mainContentOfPage">
|
||||
|
||||
<div class="callout cell text-center">
|
||||
Interested in using Midnight? Check out the <a href="https://bluestnight.com/guides/midnight/getting-started/">getting started</a>
|
||||
guide and the <a href="https://bluestnight.com/docs/midnight/users/">user documentation</a> for more information.
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<main id="post-list" class="cell medium-8"><header id="page-header">
|
||||
<h1 id="page-title">Category: golang</h1>
|
||||
</header>
|
||||
<article itemprop="blogPosts" itemscope itemtype="http://schema.org/BlogPosting"><div>
|
||||
<header class="post-list-title">
|
||||
<a href="http://localhost:1313/post/goisforlovers/">
|
||||
<h2 itemprop="headline">(Hu)go Template Primer</h2>
|
||||
</a>
|
||||
<div class="metadata"><div>
|
||||
<span class="far fa-clock" aria-hidden></span>
|
||||
<span class="sr-text">Published: </span>
|
||||
<time datetime="" itemprop="datePublished">April 02, 2014</time>
|
||||
</div></div>
|
||||
</header>
|
||||
<div class="post-list-summary" itemprop="description">
|
||||
<p>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. This document is a brief primer on using Go templates.
|
||||
|
||||
<a href="http://localhost:1313/post/goisforlovers/">
|
||||
[Read more<span class="sr-text"> from (Hu)go Template Primer</span>...]
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
<article itemprop="blogPosts" itemscope itemtype="http://schema.org/BlogPosting"><div>
|
||||
<header class="post-list-title">
|
||||
<a href="http://localhost:1313/post/hugoisforlovers/">
|
||||
<h2 itemprop="headline">Getting Started with Hugo</h2>
|
||||
</a>
|
||||
<div class="metadata"><div>
|
||||
<span class="far fa-clock" aria-hidden></span>
|
||||
<span class="sr-text">Published: </span>
|
||||
<time datetime="" itemprop="datePublished">April 02, 2014</time>
|
||||
</div></div>
|
||||
</header>
|
||||
<div class="post-list-summary" itemprop="description">
|
||||
<p>Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. Save it somewhere specific as we will be using it in the next step. More complete instructions are available at Install Hugo Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. Follow the following steps: Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:
|
||||
|
||||
<a href="http://localhost:1313/post/hugoisforlovers/">
|
||||
[Read more<span class="sr-text"> from Getting Started With Hugo</span>...]
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
<aside class="cell small-12 small-order-2 medium-4" itemscope itemtype="http://schema.org/WPSideBar"><div class="widget" id="search-container">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-search fa-xs" aria-hidden></span> Search</span>
|
||||
</header>
|
||||
<input type="search" name="search" id="searchbox" placeholder="Search..." autocomplete="off"/>
|
||||
<div id="search-results" class="grid-y hide"></div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-pencil-alt fa-xs" aria-hidden></span> <a href="http://localhost:1313/post/">Recent Posts</a></span>
|
||||
</header>
|
||||
|
||||
<a class="widget-header-small button" href="http://localhost:1313/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to the Site</a>
|
||||
<a class="widget-header-small button" href="http://localhost:1313/categories/golang/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to Golang</a><ul><li><a href="http://localhost:1313/post/creating-a-new-theme/">Creating a New Theme</a></li><li><a href="http://localhost:1313/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></li><li><a href="http://localhost:1313/post/goisforlovers/">(Hu)go Template Primer</a></li><li><a href="http://localhost:1313/post/hugoisforlovers/">Getting Started with Hugo</a></li></ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header">
|
||||
<span class="fas fa-folder fa-xs" aria-hidden></span>
|
||||
<a href="http://localhost:1313/categories/">Categories</a>
|
||||
</span>
|
||||
</header>
|
||||
<ul><li>
|
||||
<a href="http://localhost:1313/categories/development/">
|
||||
Development
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://localhost:1313/categories/golang/">
|
||||
Golang
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-tags fa-xs" aria-hidden></span> <a href="http://localhost:1313/tags/">Tags</a></span>
|
||||
</header>
|
||||
<div class="grid-x grid-padding-x" id="sidebar-tags"><a class="cell shrink" href="http://localhost:1313/tags/development/" title="development">
|
||||
development
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/go/" title="go">
|
||||
go
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/golang/" title="golang">
|
||||
golang
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/hugo/" title="hugo">
|
||||
hugo
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/templates/" title="templates">
|
||||
templates
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/themes/" title="themes">
|
||||
themes
|
||||
</a></div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
<footer class="cell grid-x full align-middle">
|
||||
<div class="cell medium-4 small-text-center medium-text-left medium-left small-order-1 grid-x">
|
||||
<div class="cell">
|
||||
<small>
|
||||
© 2019
|
||||
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
|
||||
<span itemprop="name">
|
||||
Example Site.
|
||||
</span>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
<div class="cell">
|
||||
<small>
|
||||
Built with <a href="https://gohugo.io">Hugo</a> and <a href="https://bluestnight.com/products/midnight/">Midnight</a>.
|
||||
</small>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="cell medium-4 small-text-center medium-text-center small-order-2 grid-x">
|
||||
|
||||
<div class="cell small-full small-text-center grid-x">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="social-icons" class="grid-x cell medium-4 small-text-center small-order-3 medium-text-right">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://gitlab.com/BluestNight/Midnight" class="cell shrink" rel="me nofollow" title="GitLab" aria-title="Fork me on GitLab!">
|
||||
|
||||
<span class="fa-stack fa-xs">
|
||||
<span class="fas fa-square fa-stack-2x"></span>
|
||||
<span class="fab fa-gitlab fa-stack-1x fa-inverse"></span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/iubenda.min.e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js" integrity="sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU="></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/widgets/search.min.572f332ce215f4f16d9adc8643ebc2c193fcb351d506d92d1769efaf95230773.js" integrity="sha256-Vy8zLOIV9PFtmtyGQ+vCwZP8s1HVBtktF2nvr5UjB3M=" defer></script><script type="text/javascript" src="http://localhost:1313/js/index.min.e22883a04526785bb35feb658da4974c160999432286921d7df30235cc21e4f3.js" integrity="sha256-4iiDoEUmeFuzX+tljaSXTBYJmUMihpIdffMCNcwh5PM=" defer></script>
|
||||
</div>
|
||||
<script>
|
||||
$(document).foundation();
|
||||
</script>
|
||||
<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script></body>
|
||||
</html>
|
39
isableFastRender/categories/golang/index.xml
Normal file
39
isableFastRender/categories/golang/index.xml
Normal file
@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>golang on Example Site</title>
|
||||
<link>http://localhost:1313/categories/golang/</link>
|
||||
<description>Recent content in golang on Example Site</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate>
|
||||
|
||||
<atom:link href="http://localhost:1313/categories/golang/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>(Hu)go Template Primer</title>
|
||||
<link>http://localhost:1313/post/goisforlovers/</link>
|
||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/post/goisforlovers/</guid>
|
||||
<description>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
|
||||
This document is a brief primer on using Go templates.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Getting Started with Hugo</title>
|
||||
<link>http://localhost:1313/post/hugoisforlovers/</link>
|
||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/post/hugoisforlovers/</guid>
|
||||
<description>Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture.
|
||||
Save it somewhere specific as we will be using it in the next step.
|
||||
More complete instructions are available at Install Hugo
|
||||
Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now.
|
||||
Follow the following steps:
|
||||
Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
1
isableFastRender/categories/golang/page/1/index.html
Normal file
1
isableFastRender/categories/golang/page/1/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>http://localhost:1313/categories/golang/</title><link rel="canonical" href="http://localhost:1313/categories/golang/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=http://localhost:1313/categories/golang/" /></head></html>
|
311
isableFastRender/categories/index.html
Normal file
311
isableFastRender/categories/index.html
Normal file
@ -0,0 +1,311 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Categories</title><meta name="description" itemprop="description" content="A useful description for search engine results" id="desc"><meta name="generator" content="Hugo 0.55.6" /><link rel="alternate" type="application/rss+xml" title="Example Site Feed" href="http://localhost:1313/categories/index.xml"><link rel="canonical" href="http://localhost:1313/categories/">
|
||||
|
||||
|
||||
<link rel="dns-prefetch" href="https://use.fontawesome.com/" />
|
||||
<link rel="preconnect" href="https://use.fontawesome.com/" />
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/js/foundation.min.js"></script>
|
||||
<script type="text/javascript" src="/js/lunr.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/css/foundation.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/dark.min.a2e0a27b84f040c06c153f1811086f6c2703f82371f3533c5ebb5617ad55f808.css" integrity="sha256-ouCie4TwQMBsFT8YEQhvbCcD+CNx81M8XrtWF61V+Ag="><link rel="stylesheet" href="/styles.css" >
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/reset.min.58d4832e34c59f168248179e8f6a0495f3f1ed2cb432fa09597f17f8d2916f62.css" integrity="sha256-WNSDLjTFnxaCSBeej2oElfPx7Sy0MvoJWX8X+NKRb2I="><link rel="stylesheet" href="http://localhost:1313/css/fonts.min.4ffd55649e797a49b8a6d3f70cdd1c97f25a942848a291346dd055c59bd4f010.css" integrity="sha256-T/1VZJ55ekm4ptP3DN0cl/JalChIopE0bdBVxZvU8BA="><link rel="stylesheet" href="http://localhost:1313/css/classes.min.717d03fc567fccb77be4ab35d1ac133e64e2cc160d72af4bf64a7ec26281238d.css" integrity="sha256-cX0D/FZ/zLd75Ks10awTPmTizBYNcq9L9kp+wmKBI40="><link rel="stylesheet" href="http://localhost:1313/css/pagination.min.1c019354f2098f0d34a80aa4c70a37ff5f5eb84a744f30e8af601fd877b142be.css" integrity="sha256-HAGTVPIJjw00qAqkxwo3/19euEp0TzDor2Af2HexQr4="><link rel="stylesheet" href="http://localhost:1313/css/page.min.16c3a4532fcc8cffaa9edb031826dbcfb1008775b0e8b08ada4c7d60aaaa2714.css" integrity="sha256-FsOkUy/MjP+qntsDGCbbz7EAh3Ww6LCK2kx9YKqqJxQ="><link rel="stylesheet" href="http://localhost:1313/css/widgets.min.f86a3fac609b70f8c8746e1a9bf0ee6d7030716a21281e29e0010bd19b4f22d0.css" integrity="sha256-+Go/rGCbcPjIdG4am/DubXAwcWohKB4p4AEL0ZtPItA=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/list.min.98c794b9463ca90b39ad9aa66fd65a2e60ffb9c822b873df28bf5f0389bf2b73.css" integrity="sha256-mMeUuUY8qQs5rZqmb9ZaLmD/ucgiuHPfKL9fA4m/K3M=">
|
||||
|
||||
|
||||
<link rel="preload" media="print" type="text/css" href="http://localhost:1313/css/print.min.2e0961e511885e38a09cc9a9ff3de5ce7d7d2186bb9ed98a61f176688d4ef61a.css" integrity="sha256-Lglh5RGIXjignMmp/z3lzn19IYa7ntmKYfF2aI1O9ho=" as="style"><link rel="dns-prefetch" href="https://cdnjs.cloudflare.com/" />
|
||||
<link rel="preconnect" href="https://cdnjs.cloudflare.com/" />
|
||||
|
||||
<link rel="preload" href="http://localhost:1313/index.json" as="fetch" />
|
||||
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/search.min.5561d0b8fcf8e2a7d3d0fcbe830ba8a5743255be7f849e564d3849a7cc1ba725.css" integrity="sha256-VWHQuPz44qfT0Py+gwuopXQyVb5/hJ5WTThJp8wbpyU=">
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/widgets/taglist.min.59f177c0ac5a5ae6b88ede8a87029d4012b1bdf53e37d2ccf5873832626a77f3.css" integrity="sha256-WfF3wKxaWua4jt6KhwKdQBKxvfU+N9LM9Yc4MmJqd/M=">
|
||||
|
||||
<meta name="theme-color" content="#2073c9">
|
||||
<meta name="apple-mobile-web-app-title" content="Example Site">
|
||||
<meta name="application-name" content="Example Site">
|
||||
|
||||
</head>
|
||||
<body itemscope itemtype="http://schema.org/WebPage">
|
||||
<div class="off-canvas-wrapper">
|
||||
<button id="off-canvas-toggle" type="button" class="button hide-for-medium" aria-label="Open Menu" data-toggle="main-nav-off-canvas">
|
||||
<span class="fas fa-bars"></span>
|
||||
</button>
|
||||
<div class="off-canvas position-left" id="main-nav-off-canvas" data-off-canvas>
|
||||
<nav>
|
||||
<ul class="vertical menu drilldown" data-drilldown><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="site-container" class="grid-container full off-canvas-content">
|
||||
<div class="grid-x full grid-container data-off-canvas-content">
|
||||
<div id="site-header" class="cell">
|
||||
<a href="http://localhost:1313/">
|
||||
<header class="small-text-center medium-text-left grid-x">
|
||||
<div id="site-title-container" class="cell shrink grid-y">
|
||||
<div id="site-title" class="cell shrink" itemprop="name">Example Site</div>
|
||||
<div class="cell shrink" id="site-tagline">Using the Midnight theme</div>
|
||||
</div>
|
||||
</header>
|
||||
</a>
|
||||
<nav id="main-nav" class="small-hide">
|
||||
<ul class="dropdown menu" data-dropdown-menu><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/" >
|
||||
POSTS
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/about/" >
|
||||
ABOUT HUGO
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/" >
|
||||
TUTORIALS
|
||||
</a><ul class="vertical menu">
|
||||
<li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/creating-a-new-theme/" >
|
||||
CREATING A NEW THEME
|
||||
</a></li><li itemscope itemtype="http://schema.org/SiteNavigationElement">
|
||||
<a class="main-nav button" tabindex="0" href="http://localhost:1313/post/migrate-from-jekyll/" >
|
||||
MIGRATING FROM JEKYLL
|
||||
</a></li>
|
||||
</ul></li></ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="main-container" class="cell grid-x grid-padding-x grid-container" role="main" itemprop="mainContentOfPage">
|
||||
|
||||
<div class="callout cell text-center">
|
||||
Interested in using Midnight? Check out the <a href="https://bluestnight.com/guides/midnight/getting-started/">getting started</a>
|
||||
guide and the <a href="https://bluestnight.com/docs/midnight/users/">user documentation</a> for more information.
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<main class="cell medium-8">
|
||||
<header id="page-header">
|
||||
<h1 id="page-title">Categories</h1>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
|
||||
<ul id="taxonomy-list" class="grid-x">
|
||||
<div class="cell small-full medium-6 large-4">
|
||||
<li class="taxonomy-item"><a href="http://localhost:1313/categories/development">development</a> (2)
|
||||
</li>
|
||||
</div>
|
||||
|
||||
<div class="cell small-full medium-6 large-4">
|
||||
<li class="taxonomy-item"><a href="http://localhost:1313/categories/golang">golang</a> (2)
|
||||
</li>
|
||||
</div>
|
||||
|
||||
</ul>
|
||||
</main>
|
||||
<aside class="cell small-12 small-order-2 medium-4" itemscope itemtype="http://schema.org/WPSideBar"><div class="widget" id="search-container">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-search fa-xs" aria-hidden></span> Search</span>
|
||||
</header>
|
||||
<input type="search" name="search" id="searchbox" placeholder="Search..." autocomplete="off"/>
|
||||
<div id="search-results" class="grid-y hide"></div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-pencil-alt fa-xs" aria-hidden></span> <a href="http://localhost:1313/post/">Recent Posts</a></span>
|
||||
</header>
|
||||
|
||||
<a class="widget-header-small button" href="http://localhost:1313/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to the Site</a>
|
||||
<a class="widget-header-small button" href="http://localhost:1313/categories/index.xml"><span class="fas fa-rss fa-xs" aria-hidden></span> Subscribe to Categories</a><ul><li><a href="http://localhost:1313/post/creating-a-new-theme/">Creating a New Theme</a></li><li><a href="http://localhost:1313/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></li><li><a href="http://localhost:1313/post/goisforlovers/">(Hu)go Template Primer</a></li><li><a href="http://localhost:1313/post/hugoisforlovers/">Getting Started with Hugo</a></li></ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header">
|
||||
<span class="fas fa-folder fa-xs" aria-hidden></span>
|
||||
<a href="http://localhost:1313/categories/">Categories</a>
|
||||
</span>
|
||||
</header>
|
||||
<ul><li>
|
||||
<a href="http://localhost:1313/categories/development/">
|
||||
Development
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://localhost:1313/categories/golang/">
|
||||
Golang
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<header>
|
||||
<span class="widget-header"><span class="fas fa-tags fa-xs" aria-hidden></span> <a href="http://localhost:1313/tags/">Tags</a></span>
|
||||
</header>
|
||||
<div class="grid-x grid-padding-x" id="sidebar-tags"><a class="cell shrink" href="http://localhost:1313/tags/development/" title="development">
|
||||
development
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/go/" title="go">
|
||||
go
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/golang/" title="golang">
|
||||
golang
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/hugo/" title="hugo">
|
||||
hugo
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/templates/" title="templates">
|
||||
templates
|
||||
</a><a class="cell shrink" href="http://localhost:1313/tags/themes/" title="themes">
|
||||
themes
|
||||
</a></div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
<footer class="cell grid-x full align-middle">
|
||||
<div class="cell medium-4 small-text-center medium-text-left medium-left small-order-1 grid-x">
|
||||
<div class="cell">
|
||||
<small>
|
||||
© 2019
|
||||
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
|
||||
<span itemprop="name">
|
||||
Example Site.
|
||||
</span>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
<div class="cell">
|
||||
<small>
|
||||
Built with <a href="https://gohugo.io">Hugo</a> and <a href="https://bluestnight.com/products/midnight/">Midnight</a>.
|
||||
</small>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="cell medium-4 small-text-center medium-text-center small-order-2 grid-x">
|
||||
|
||||
<div class="cell small-full small-text-center grid-x">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="social-icons" class="grid-x cell medium-4 small-text-center small-order-3 medium-text-right">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://gitlab.com/BluestNight/Midnight" class="cell shrink" rel="me nofollow" title="GitLab" aria-title="Fork me on GitLab!">
|
||||
|
||||
<span class="fa-stack fa-xs">
|
||||
<span class="fas fa-square fa-stack-2x"></span>
|
||||
<span class="fab fa-gitlab fa-stack-1x fa-inverse"></span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/iubenda.min.e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js" integrity="sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU="></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="http://localhost:1313/js/widgets/search.min.572f332ce215f4f16d9adc8643ebc2c193fcb351d506d92d1769efaf95230773.js" integrity="sha256-Vy8zLOIV9PFtmtyGQ+vCwZP8s1HVBtktF2nvr5UjB3M=" defer></script><script type="text/javascript" src="http://localhost:1313/js/index.min.e22883a04526785bb35feb658da4974c160999432286921d7df30235cc21e4f3.js" integrity="sha256-4iiDoEUmeFuzX+tljaSXTBYJmUMihpIdffMCNcwh5PM=" defer></script>
|
||||
</div>
|
||||
<script>
|
||||
$(document).foundation();
|
||||
</script>
|
||||
<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script></body>
|
||||
</html>
|
33
isableFastRender/categories/index.xml
Normal file
33
isableFastRender/categories/index.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Categories on Example Site</title>
|
||||
<link>http://localhost:1313/categories/</link>
|
||||
<description>Recent content in Categories on Example Site</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate>
|
||||
|
||||
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>Development</title>
|
||||
<link>http://localhost:1313/categories/development/</link>
|
||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/categories/development/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>golang</title>
|
||||
<link>http://localhost:1313/categories/golang/</link>
|
||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/categories/golang/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
113
isableFastRender/css/classes.css
Normal file
113
isableFastRender/css/classes.css
Normal file
@ -0,0 +1,113 @@
|
||||
/* Base classes */
|
||||
.button, .drilldown a, .pagination .button, .dropdown.menu .is-active > a, .dropdown.menu a {
|
||||
background-color: var(--color-bg-alt);
|
||||
color: var(--color-fg-alt);
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 0.7rem 0.5rem;
|
||||
font-size: 1rem;
|
||||
transition: unset;
|
||||
}
|
||||
|
||||
.button.disabled, .button:disabled {
|
||||
background-color: var(--color-bg-alt-transparent);
|
||||
color: var(--color-fg-alt-transparent);
|
||||
}
|
||||
|
||||
.button:hover:not(.disabled):not(disabled), .button:focus:not(.disabled):not(disabled),
|
||||
.button:active:not(.disabled):not(disabled), .button.active,
|
||||
.drilldown a:hover:not(.disabled):not(disabled), .drilldown a:focus:not(.disabled):not(disabled),
|
||||
.drilldown a:active:not(.disabled):not(disabled), .drilldown a.active,
|
||||
.dropdown.menu a.button.active {
|
||||
background-color: var(--color-bg-accent);
|
||||
color: var(--color-fg-accent) !important;
|
||||
cursor: pointer;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.no-select {
|
||||
/* Thanks to https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting-using-css#4407335 */
|
||||
-webkit-touch-callout: none; /* iOS Safari */
|
||||
-webkit-user-select: none; /* Safari */
|
||||
-khtml-user-select: none; /* Konqueror HTML */
|
||||
-moz-user-select: none; /* Firefox */
|
||||
-ms-user-select: none; /* Internet Explorer/Edge */
|
||||
user-select: none; /* Non-prefixed version, currently
|
||||
supported by Chrome and Opera */
|
||||
}
|
||||
|
||||
.no-border {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.hcenter {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.vcenter {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.left { order: -1; }
|
||||
.right { order: 1; }
|
||||
.hide { display: none !important; }
|
||||
|
||||
.disabled {
|
||||
/*pointer-events: none;*/
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Non-button elements that can be clicked for behavior */
|
||||
.clickable {
|
||||
color: var(--color-bg-accent-transparent);
|
||||
}
|
||||
|
||||
.clickable:hover {
|
||||
color: var(--color-bg-accent);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.badge {
|
||||
background-color: var(--color-bg-alt);
|
||||
color: var(--color-fg-alt);
|
||||
}
|
||||
|
||||
a:hover .badge, .badge:hover {
|
||||
background-color: var(--color-bg-accent);
|
||||
color: var(--color-fg-accent);
|
||||
}
|
||||
|
||||
/* Hide text meant for screen readers */
|
||||
/* Copied from https://rianrietveld.com/2015/04/04/the-screen-reader-text-class-why-and-how/ */
|
||||
.sr-text {
|
||||
border: 0;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute !important;
|
||||
width: 1px;
|
||||
word-wrap: normal !important;
|
||||
/* Not (currently) supported by browsers */
|
||||
speak: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 39.9375em) {
|
||||
.small-text-right { text-align: right; }
|
||||
.small-text-center { text-align: center; }
|
||||
.small-text-left { text-align: left; }
|
||||
}
|
||||
|
||||
@media screen and (min-width: 40em) {
|
||||
.medium-text-right { text-align: right; }
|
||||
.medium-text-center { text-align: center; }
|
||||
.medium-text-left { text-align: left; }
|
||||
}
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.large-text-right { text-align: right; }
|
||||
.large-text-center { text-align: center; }
|
||||
.large-text-left { text-align: left; }
|
||||
}
|
@ -0,0 +1 @@
|
||||
.button,.drilldown a,.pagination .button,.dropdown.menu .is-active>a,.dropdown.menu a{background-color:var(--color-bg-alt);color:var(--color-fg-alt);font-weight:700;text-transform:uppercase;padding:.7rem .5rem;font-size:1rem;transition:unset}.button.disabled,.button:disabled{background-color:var(--color-bg-alt-transparent);color:var(--color-fg-alt-transparent)}.button:hover:not(.disabled):not(disabled),.button:focus:not(.disabled):not(disabled),.button:active:not(.disabled):not(disabled),.button.active,.drilldown a:hover:not(.disabled):not(disabled),.drilldown a:focus:not(.disabled):not(disabled),.drilldown a:active:not(.disabled):not(disabled),.drilldown a.active,.dropdown.menu a.button.active{background-color:var(--color-bg-accent);color:var(--color-fg-accent)!important;cursor:pointer;text-decoration:none!important}.no-select{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.no-border{border:0!important}.hcenter{justify-content:center}.vcenter{align-items:center}.left{order:-1}.right{order:1}.hide{display:none!important}.disabled{cursor:default}.clickable{color:var(--color-bg-accent-transparent)}.clickable:hover{color:var(--color-bg-accent);cursor:pointer}.badge{background-color:var(--color-bg-alt);color:var(--color-fg-alt)}a:hover .badge,.badge:hover{background-color:var(--color-bg-accent);color:var(--color-fg-accent)}.sr-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;speak:none}@media screen and (max-width:39.9375em){.small-text-right{text-align:right}.small-text-center{text-align:center}.small-text-left{text-align:left}}@media screen and (min-width:40em){.medium-text-right{text-align:right}.medium-text-center{text-align:center}.medium-text-left{text-align:left}}@media screen and (min-width:64em){.large-text-right{text-align:right}.large-text-center{text-align:center}.large-text-left{text-align:left}}
|
94
isableFastRender/css/comments/commento.css
Normal file
94
isableFastRender/css/comments/commento.css
Normal file
@ -0,0 +1,94 @@
|
||||
.commento-root, .commento-root .commento-logged-container .commento-logged-in-as .commento-name,
|
||||
.commento-root .commento-logged-container .commento-logout,
|
||||
.commento-root .commento-card .commento-name, .commento-root .commento-card .commento-subtitle,
|
||||
.commento-root .commento-card .commento-score, .commento-root .commento-create-container::before {
|
||||
color: var(--color-fg-main);
|
||||
}
|
||||
|
||||
.commento-root textarea {
|
||||
background-color: var(--color-bg-alt);
|
||||
color: var(--color-fg-alt);
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.commento-root code {
|
||||
background-color: var(--color-bg-code);
|
||||
color: var(--color-bg-accent);
|
||||
}
|
||||
|
||||
.commento-root .commento-submit-button,
|
||||
.commento-root .commento-create-button,
|
||||
.commento-root .commento-login-button,
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-email-container .commento-email .commento-email-button,
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-email-container .commento-email .commento-email-button:hover {
|
||||
background-color: var(--color-bg-accent);
|
||||
color: var(--color-fg-accent);
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, p,
|
||||
.commento-root .commento-account-buttons-question{
|
||||
color: var(--color-fg-main);
|
||||
}
|
||||
|
||||
.commento-root a {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.commento-root .commento-option-button {
|
||||
color: var(--color-fg-main);
|
||||
background-color: var(--color-fg-main);
|
||||
outline-color: var(--color-fg-main);
|
||||
border-color: var(--color-fg-main);
|
||||
}
|
||||
|
||||
/* Login/Register Dialog */
|
||||
.commento-root .commento-login-box-container .commento-login-box {
|
||||
background-color: var(--color-bg-alt);
|
||||
color: var(--color-fg-alt);
|
||||
border: 1px solid var(--color-fg-alt);
|
||||
}
|
||||
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-email-container .commento-email {
|
||||
background-color: var(--color-bg-alt);
|
||||
color: var(--color-fg-alt);
|
||||
}
|
||||
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-login-box-subtitle {
|
||||
color: var(--color-fg-alt);
|
||||
}
|
||||
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-login-box-header {
|
||||
color: var(--color-fg-main);
|
||||
}
|
||||
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-email-container .commento-email .commento-input {
|
||||
background-color: var(--color-bg-main);
|
||||
color: var(--color-fg-main);
|
||||
}
|
||||
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-login-box-close::before,
|
||||
.commento-root .commento-login-box-container .commento-login-box .commento-login-box-close::after {
|
||||
background-color: var(--color-fg-alt);
|
||||
}
|
||||
|
||||
#commento-textarea-container-root {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.commento-root .commento-account-buttons-question {
|
||||
top: 0.5rem;
|
||||
}
|
||||
|
||||
.commento-account-buttons-container {
|
||||
top: 3rem;
|
||||
}
|
||||
|
||||
.commento-account-buttons-container .commento-account-buttons {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.commento-root .commento-logged-container .commento-logout:hover {
|
||||
text-decoration: underline;
|
||||
}
|
60
isableFastRender/css/dark.css
Normal file
60
isableFastRender/css/dark.css
Normal file
@ -0,0 +1,60 @@
|
||||
/* Generated from the "Monokai" Chroma theme */
|
||||
/* Background */ .chroma { color: #f8f8f2; background-color: #272822 }
|
||||
/* Error */ .chroma .err { color: #960050; background-color: #1e0010 }
|
||||
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
|
||||
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block; }
|
||||
/* LineHighlight */ .chroma .hl { background-color: #ffffcc; display: block; width: 100% }
|
||||
/* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; display: block; }
|
||||
/* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; }
|
||||
/* Keyword */ .chroma .k { color: #66d9ef }
|
||||
/* KeywordConstant */ .chroma .kc { color: #66d9ef }
|
||||
/* KeywordDeclaration */ .chroma .kd { color: #66d9ef }
|
||||
/* KeywordNamespace */ .chroma .kn { color: #f92672 }
|
||||
/* KeywordPseudo */ .chroma .kp { color: #66d9ef }
|
||||
/* KeywordReserved */ .chroma .kr { color: #66d9ef }
|
||||
/* KeywordType */ .chroma .kt { color: #66d9ef }
|
||||
/* NameAttribute */ .chroma .na { color: #a6e22e }
|
||||
/* NameClass */ .chroma .nc { color: #a6e22e }
|
||||
/* NameConstant */ .chroma .no { color: #66d9ef }
|
||||
/* NameDecorator */ .chroma .nd { color: #a6e22e }
|
||||
/* NameException */ .chroma .ne { color: #a6e22e }
|
||||
/* NameFunction */ .chroma .nf { color: #a6e22e }
|
||||
/* NameOther */ .chroma .nx { color: #a6e22e }
|
||||
/* NameTag */ .chroma .nt { color: #f92672 }
|
||||
/* Literal */ .chroma .l { color: #ae81ff }
|
||||
/* LiteralDate */ .chroma .ld { color: #e6db74 }
|
||||
/* LiteralString */ .chroma .s { color: #e6db74 }
|
||||
/* LiteralStringAffix */ .chroma .sa { color: #e6db74 }
|
||||
/* LiteralStringBacktick */ .chroma .sb { color: #e6db74 }
|
||||
/* LiteralStringChar */ .chroma .sc { color: #e6db74 }
|
||||
/* LiteralStringDelimiter */ .chroma .dl { color: #e6db74 }
|
||||
/* LiteralStringDoc */ .chroma .sd { color: #e6db74 }
|
||||
/* LiteralStringDouble */ .chroma .s2 { color: #e6db74 }
|
||||
/* LiteralStringEscape */ .chroma .se { color: #ae81ff }
|
||||
/* LiteralStringHeredoc */ .chroma .sh { color: #e6db74 }
|
||||
/* LiteralStringInterpol */ .chroma .si { color: #e6db74 }
|
||||
/* LiteralStringOther */ .chroma .sx { color: #e6db74 }
|
||||
/* LiteralStringRegex */ .chroma .sr { color: #e6db74 }
|
||||
/* LiteralStringSingle */ .chroma .s1 { color: #e6db74 }
|
||||
/* LiteralStringSymbol */ .chroma .ss { color: #e6db74 }
|
||||
/* LiteralNumber */ .chroma .m { color: #ae81ff }
|
||||
/* LiteralNumberBin */ .chroma .mb { color: #ae81ff }
|
||||
/* LiteralNumberFloat */ .chroma .mf { color: #ae81ff }
|
||||
/* LiteralNumberHex */ .chroma .mh { color: #ae81ff }
|
||||
/* LiteralNumberInteger */ .chroma .mi { color: #ae81ff }
|
||||
/* LiteralNumberIntegerLong */ .chroma .il { color: #ae81ff }
|
||||
/* LiteralNumberOct */ .chroma .mo { color: #ae81ff }
|
||||
/* Operator */ .chroma .o { color: #f92672 }
|
||||
/* OperatorWord */ .chroma .ow { color: #f92672 }
|
||||
/* Comment */ .chroma .c { color: #75715e }
|
||||
/* CommentHashbang */ .chroma .ch { color: #75715e }
|
||||
/* CommentMultiline */ .chroma .cm { color: #75715e }
|
||||
/* CommentSingle */ .chroma .c1 { color: #75715e }
|
||||
/* CommentSpecial */ .chroma .cs { color: #75715e }
|
||||
/* CommentPreproc */ .chroma .cp { color: #75715e }
|
||||
/* CommentPreprocFile */ .chroma .cpf { color: #75715e }
|
||||
/* GenericDeleted */ .chroma .gd { color: #f92672 }
|
||||
/* GenericEmph */ .chroma .ge { font-style: italic }
|
||||
/* GenericInserted */ .chroma .gi { color: #a6e22e }
|
||||
/* GenericStrong */ .chroma .gs { font-weight: bold }
|
||||
/* GenericSubheading */ .chroma .gu { color: #75715e }
|
@ -0,0 +1 @@
|
||||
.chroma{color:#f8f8f2;background-color:#272822}.chroma .err{color:#960050;background-color:#1e0010}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;overflow:auto;display:block}.chroma .hl{background-color:#ffc;display:block;width:100%}.chroma .lnt{margin-right:.4em;padding:0 .4em;display:block}.chroma .ln{margin-right:.4em;padding:0 .4em}.chroma .k{color:#66d9ef}.chroma .kc{color:#66d9ef}.chroma .kd{color:#66d9ef}.chroma .kn{color:#f92672}.chroma .kp{color:#66d9ef}.chroma .kr{color:#66d9ef}.chroma .kt{color:#66d9ef}.chroma .na{color:#a6e22e}.chroma .nc{color:#a6e22e}.chroma .no{color:#66d9ef}.chroma .nd{color:#a6e22e}.chroma .ne{color:#a6e22e}.chroma .nf{color:#a6e22e}.chroma .nx{color:#a6e22e}.chroma .nt{color:#f92672}.chroma .l{color:#ae81ff}.chroma .ld{color:#e6db74}.chroma .s{color:#e6db74}.chroma .sa{color:#e6db74}.chroma .sb{color:#e6db74}.chroma .sc{color:#e6db74}.chroma .dl{color:#e6db74}.chroma .sd{color:#e6db74}.chroma .s2{color:#e6db74}.chroma .se{color:#ae81ff}.chroma .sh{color:#e6db74}.chroma .si{color:#e6db74}.chroma .sx{color:#e6db74}.chroma .sr{color:#e6db74}.chroma .s1{color:#e6db74}.chroma .ss{color:#e6db74}.chroma .m{color:#ae81ff}.chroma .mb{color:#ae81ff}.chroma .mf{color:#ae81ff}.chroma .mh{color:#ae81ff}.chroma .mi{color:#ae81ff}.chroma .il{color:#ae81ff}.chroma .mo{color:#ae81ff}.chroma .o{color:#f92672}.chroma .ow{color:#f92672}.chroma .c{color:#75715e}.chroma .ch{color:#75715e}.chroma .cm{color:#75715e}.chroma .c1{color:#75715e}.chroma .cs{color:#75715e}.chroma .cp{color:#75715e}.chroma .cpf{color:#75715e}.chroma .gd{color:#f92672}.chroma .ge{font-style:italic}.chroma .gi{color:#a6e22e}.chroma .gs{font-weight:700}.chroma .gu{color:#75715e}
|
26
isableFastRender/css/figure.css
Normal file
26
isableFastRender/css/figure.css
Normal file
@ -0,0 +1,26 @@
|
||||
figure {
|
||||
display: block;
|
||||
margin: auto;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
figure img {
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
figure h1, figure h2, figure h3, figure h4, figure h5, figure h6 {
|
||||
text-align: center;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
figure figcaption p {
|
||||
font-style: italic;
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
figure figcaption {
|
||||
margin-bottom: 1em;
|
||||
}
|
198
isableFastRender/css/fonts.css
Normal file
198
isableFastRender/css/fonts.css
Normal file
@ -0,0 +1,198 @@
|
||||
@font-face {
|
||||
font-family: "Clear Sans";
|
||||
src: url('fonts/clear-sans/ClearSans-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Clear Sans";
|
||||
src: url('fonts/clear-sans/ClearSans-Italic.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Clear Sans";
|
||||
src: url('fonts/clear-sans/ClearSans-Bold.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Clear Sans";
|
||||
src: url('fonts/clear-sans/ClearSans-BoldItalic.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Alegreya";
|
||||
src: url('fonts/alegreya/Alegreya-Regular.woff2') format('woff2'), url('fonts/alegreya/Alegreya-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Alegreya";
|
||||
src: url('fonts/alegreya/Alegreya-Italic.woff2') format('woff2'), url('fonts/alegreya/Alegreya-Italic.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Alegreya";
|
||||
src: url('fonts/alegreya/Alegreya-Bold.woff2') format('woff2'), url('fonts/alegreya/Alegreya-Bold.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Alegreya";
|
||||
src: url('fonts/alegreya/Alegreya-BoldItalic.woff2') format('woff2'), url('fonts/alegreya/Alegreya-BoldItalic.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Zilla Slab";
|
||||
src: url('fonts/zilla-slab/ZillaSlab-Regular.woff2') format('woff2'), url('fonts/zilla-slab/ZillaSlab-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Zilla Slab";
|
||||
src: url('fonts/zilla-slab/ZillaSlab-RegularItalic.woff2') format('woff2'), url('fonts/zilla-slab/ZillaSlab-RegularItalic.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Zilla Slab";
|
||||
src: url('fonts/zilla-slab/ZillaSlab-Bold.woff2') format('woff2'), url('fonts/zilla-slab/ZillaSlab-Bold.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Zilla Slab";
|
||||
src: url('fonts/zilla-slab/ZillaSlab-BoldItalic.woff2') format('woff2'), url('fonts/zilla-slab/ZillaSlab-BoldItalic.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Source Code Pro";
|
||||
src: url('fonts/sourcecodepro/SourceCodePro-Regular.woff2') format('woff2'), url('fonts/sourcecodepro/SourceCodePro-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Source Code Pro";
|
||||
src: url('fonts/sourcecodepro/SourceCodePro-It.woff2') format('woff2'), url('fonts/sourcecodepro/SourceCodePro-It.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Source Code Pro";
|
||||
src: url('fonts/sourcecodepro/SourceCodePro-Bold.woff2') format('woff2'), url('fonts/sourcecodepro/SourceCodePro-Bold.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Source Code Pro";
|
||||
src: url('fonts/sourcecodepro/SourceCodePro-BoldIt.woff2') format('woff2'), url('fonts/sourcecodepro/SourceCodePro-BoldIt.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Secret Typewriter";
|
||||
src: url('fonts/secret-typewriter/secret-typewriter.woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'aquiline-two';
|
||||
src: url('fonts/aquiline-two/aquiline-two.woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'blokletters';
|
||||
src: url('fonts/blokletters/blokletters-regular.woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'blokletters';
|
||||
src: url('fonts/blokletters/blokletters-bold.woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'blokletters';
|
||||
src: url('fonts/blokletters/blokletters-light.woff');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family:'calligraffiti';
|
||||
src: url('fonts/calligraffiti/calligraffiti.woff2') format('woff2'), url('fonts/calligraffiti/calligraffiti.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'felipa';
|
||||
src: url('fonts/felipa/felipa.otf');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family:'note-this';
|
||||
src: url('fonts/note-this/note-this.woff2') format('woff2'), url('fonts/note-this/note-this.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'over-the-rainbow';
|
||||
src: url('fonts/over-the-rainbow/over-the-rainbow.ttf');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-body);
|
||||
}
|
||||
|
||||
header:not(.fa), h1, h2, h3, h4, h5, h6, .widget-header:not(.fas):not(.far):not(.fab), .button, #menu-toggle {
|
||||
font-family: var(--font-header);
|
||||
}
|
||||
|
||||
.serif, .serif * {
|
||||
font-family: "Alegreya", serif !important;
|
||||
}
|
||||
|
||||
.slab-serif, .slab-serif * {
|
||||
font-family: "Zilla Slab", serif !important;
|
||||
}
|
||||
|
||||
.sans-serif, .sans-serif * {
|
||||
font-family: "Clear Sans", sans-serif !important;
|
||||
}
|
||||
|
||||
.typewriter, .typewriter * {
|
||||
font-family: "Secret Typewriter", monospace !important;
|
||||
}
|
@ -0,0 +1 @@
|
||||
@font-face{font-family:clear sans;src:url(fonts/clear-sans/ClearSans-Regular.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:clear sans;src:url(fonts/clear-sans/ClearSans-Italic.woff) format('woff');font-weight:400;font-style:italic}@font-face{font-family:clear sans;src:url(fonts/clear-sans/ClearSans-Bold.woff) format('woff');font-weight:700;font-style:normal}@font-face{font-family:clear sans;src:url(fonts/clear-sans/ClearSans-BoldItalic.woff) format('woff');font-weight:700;font-style:italic}@font-face{font-family:alegreya;src:url(fonts/alegreya/Alegreya-Regular.woff2) format('woff2'),url(fonts/alegreya/Alegreya-Regular.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:alegreya;src:url(fonts/alegreya/Alegreya-Italic.woff2) format('woff2'),url(fonts/alegreya/Alegreya-Italic.woff) format('woff');font-weight:400;font-style:italic}@font-face{font-family:alegreya;src:url(fonts/alegreya/Alegreya-Bold.woff2) format('woff2'),url(fonts/alegreya/Alegreya-Bold.woff) format('woff');font-weight:700;font-style:normal}@font-face{font-family:alegreya;src:url(fonts/alegreya/Alegreya-BoldItalic.woff2) format('woff2'),url(fonts/alegreya/Alegreya-BoldItalic.woff) format('woff');font-weight:700;font-style:italic}@font-face{font-family:zilla slab;src:url(fonts/zilla-slab/ZillaSlab-Regular.woff2) format('woff2'),url(fonts/zilla-slab/ZillaSlab-Regular.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:zilla slab;src:url(fonts/zilla-slab/ZillaSlab-RegularItalic.woff2) format('woff2'),url(fonts/zilla-slab/ZillaSlab-RegularItalic.woff) format('woff');font-weight:400;font-style:italic}@font-face{font-family:zilla slab;src:url(fonts/zilla-slab/ZillaSlab-Bold.woff2) format('woff2'),url(fonts/zilla-slab/ZillaSlab-Bold.woff) format('woff');font-weight:700;font-style:normal}@font-face{font-family:zilla slab;src:url(fonts/zilla-slab/ZillaSlab-BoldItalic.woff2) format('woff2'),url(fonts/zilla-slab/ZillaSlab-BoldItalic.woff) format('woff');font-weight:700;font-style:italic}@font-face{font-family:source code pro;src:url(fonts/sourcecodepro/SourceCodePro-Regular.woff2) format('woff2'),url(fonts/sourcecodepro/SourceCodePro-Regular.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:source code pro;src:url(fonts/sourcecodepro/SourceCodePro-It.woff2) format('woff2'),url(fonts/sourcecodepro/SourceCodePro-It.woff) format('woff');font-weight:400;font-style:italic}@font-face{font-family:source code pro;src:url(fonts/sourcecodepro/SourceCodePro-Bold.woff2) format('woff2'),url(fonts/sourcecodepro/SourceCodePro-Bold.woff) format('woff');font-weight:700;font-style:normal}@font-face{font-family:source code pro;src:url(fonts/sourcecodepro/SourceCodePro-BoldIt.woff2) format('woff2'),url(fonts/sourcecodepro/SourceCodePro-BoldIt.woff) format('woff');font-weight:700;font-style:italic}@font-face{font-family:secret typewriter;src:url(fonts/secret-typewriter/secret-typewriter.woff);font-weight:400;font-style:normal}@font-face{font-family:aquiline-two;src:url(fonts/aquiline-two/aquiline-two.woff);font-weight:400;font-style:normal}@font-face{font-family:blokletters;src:url(fonts/blokletters/blokletters-regular.woff);font-weight:400;font-style:normal}@font-face{font-family:blokletters;src:url(fonts/blokletters/blokletters-bold.woff);font-weight:700;font-style:normal}@font-face{font-family:blokletters;src:url(fonts/blokletters/blokletters-light.woff);font-weight:300;font-style:normal}@font-face{font-family:calligraffiti;src:url(fonts/calligraffiti/calligraffiti.woff2) format('woff2'),url(fonts/calligraffiti/calligraffiti.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:felipa;src:url(fonts/felipa/felipa.otf);font-weight:400;font-style:normal}@font-face{font-family:note-this;src:url(fonts/note-this/note-this.woff2) format('woff2'),url(fonts/note-this/note-this.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:over-the-rainbow;src:url(fonts/over-the-rainbow/over-the-rainbow.ttf);font-weight:400;font-style:normal}body{font-family:var(--font-body)}header:not(.fa),h1,h2,h3,h4,h5,h6,.widget-header:not(.fas):not(.far):not(.fab),.button,#menu-toggle{font-family:var(--font-header)}.serif,.serif *{font-family:alegreya,serif!important}.slab-serif,.slab-serif *{font-family:zilla slab,serif!important}.sans-serif,.sans-serif *{font-family:clear sans,sans-serif!important}.typewriter,.typewriter *{font-family:secret typewriter,monospace!important}
|
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Black.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Black.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Black.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Black.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BlackItalic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BlackItalic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BlackItalic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BlackItalic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Bold.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Bold.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Bold.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Bold.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BoldItalic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BoldItalic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BoldItalic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-ExtraBold.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-ExtraBold.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-ExtraBold.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-ExtraBold.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Italic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Italic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Italic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Italic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Medium.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Medium.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Medium.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Medium.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-MediumItalic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-MediumItalic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-MediumItalic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-MediumItalic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Regular.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Regular.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Regular.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/Alegreya-Regular.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Black.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Black.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Black.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Black.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BlackItalic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BlackItalic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BlackItalic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BlackItalic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Bold.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Bold.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Bold.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Bold.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BoldItalic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BoldItalic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BoldItalic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-ExtraBold.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-ExtraBold.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-ExtraBold.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-ExtraBold.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Italic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Italic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Italic.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Italic.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Medium.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Medium.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Medium.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Medium.woff2
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-MediumItalic.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-MediumItalic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Regular.woff
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Regular.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Regular.woff2
Normal file
BIN
isableFastRender/css/fonts/alegreya/AlegreyaSC-Regular.woff2
Normal file
Binary file not shown.
93
isableFastRender/css/fonts/alegreya/OFL.txt
Normal file
93
isableFastRender/css/fonts/alegreya/OFL.txt
Normal file
@ -0,0 +1,93 @@
|
||||
Copyright 2011 The Alegreya Project Authors (https://github.com/huertatipografica/Alegreya)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
5
isableFastRender/css/fonts/aquiline-two/LICENSE
Normal file
5
isableFastRender/css/fonts/aquiline-two/LICENSE
Normal file
@ -0,0 +1,5 @@
|
||||
Manfred’s fonts are free for private and charity use. They are even free for commercial use – but if there’s any profit, pls make a donation to organizations like Doctors Without Borders.
|
||||
|
||||
These fonts can NOT be included in any compilation CDs, disks or products, either commercial or shareware unless prior permission granted.
|
||||
|
||||
All typefaces were created by Manfred Klein 2001-2008.
|
BIN
isableFastRender/css/fonts/aquiline-two/aquiline-two.woff
Normal file
BIN
isableFastRender/css/fonts/aquiline-two/aquiline-two.woff
Normal file
Binary file not shown.
359
isableFastRender/css/fonts/blokletters/LICENSE
Normal file
359
isableFastRender/css/fonts/blokletters/LICENSE
Normal file
@ -0,0 +1,359 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
Attribution-ShareAlike 3.0 Unported
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN “AS-IS” BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR
|
||||
DAMAGES RESULTING FROM ITS USE.
|
||||
|
||||
License
|
||||
|
||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
|
||||
COMMONS PUBLIC LICENSE (“CCPL” OR “LICENSE”). THE WORK IS PROTECTED BY
|
||||
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
|
||||
AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
||||
|
||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE
|
||||
TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY
|
||||
BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS
|
||||
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
|
||||
CONDITIONS.
|
||||
|
||||
1. Definitions
|
||||
|
||||
a. “Adaptation” means a work based upon the Work, or upon the Work and
|
||||
other pre-existing works, such as a translation, adaptation,
|
||||
derivative work, arrangement of music or other alterations of a
|
||||
literary or artistic work, or phonogram or performance and includes
|
||||
cinematographic adaptations or any other form in which the Work may be
|
||||
recast, transformed, or adapted including in any form recognizably
|
||||
derived from the original, except that a work that constitutes a
|
||||
Collection will not be considered an Adaptation for the purpose of
|
||||
this License. For the avoidance of doubt, where the Work is a musical
|
||||
work, performance or phonogram, the synchronization of the Work in
|
||||
timed-relation with a moving image (“synching”) will be considered an
|
||||
Adaptation for the purpose of this License.
|
||||
b. “Collection” means a collection of literary or artistic works, such as
|
||||
encyclopedias and anthologies, or performances, phonograms or
|
||||
broadcasts, or other works or subject matter other than works listed
|
||||
in Section 1(f) below, which, by reason of the selection and
|
||||
arrangement of their contents, constitute intellectual creations, in
|
||||
which the Work is included in its entirety in unmodified form along
|
||||
with one or more other contributions, each constituting separate and
|
||||
independent works in themselves, which together are assembled into a
|
||||
collective whole. A work that constitutes a Collection will not be
|
||||
considered an Adaptation (as defined below) for the purposes of this
|
||||
License.
|
||||
c. “Creative Commons Compatible License” means a license that is listed
|
||||
at https://creativecommons.org/compatiblelicenses that has been
|
||||
approved by Creative Commons as being essentially equivalent to this
|
||||
License, including, at a minimum, because that license: (i) contains
|
||||
terms that have the same purpose, meaning and effect as the License
|
||||
Elements of this License; and, (ii) explicitly permits the relicensing
|
||||
of adaptations of works made available under that license under this
|
||||
License or a Creative Commons jurisdiction license with the same
|
||||
License Elements as this License.
|
||||
d. “Distribute” means to make available to the public the original and
|
||||
copies of the Work or Adaptation, as appropriate, through sale or
|
||||
other transfer of ownership.
|
||||
e. “License Elements” means the following high-level license attributes
|
||||
as selected by Licensor and indicated in the title of this License:
|
||||
Attribution, ShareAlike.
|
||||
f. “Licensor” means the individual, individuals, entity or entities that
|
||||
offer(s) the Work under the terms of this License.
|
||||
g. “Original Author” means, in the case of a literary or artistic work,
|
||||
the individual, individuals, entity or entities who created the Work
|
||||
or if no individual or entity can be identified, the publisher; and in
|
||||
addition (i) in the case of a performance the actors, singers,
|
||||
musicians, dancers, and other persons who act, sing, deliver, declaim,
|
||||
play in, interpret or otherwise perform literary or artistic works or
|
||||
expressions of folklore; (ii) in the case of a phonogram the producer
|
||||
being the person or legal entity who first fixes the sounds of a
|
||||
performance or other sounds; and, (iii) in the case of broadcasts, the
|
||||
organization that transmits the broadcast.
|
||||
h. “Work” means the literary and/or artistic work offered under the terms
|
||||
of this License including without limitation any production in the
|
||||
literary, scientific and artistic domain, whatever may be the mode or
|
||||
form of its expression including digital form, such as a book,
|
||||
pamphlet and other writing; a lecture, address, sermon or other work
|
||||
of the same nature; a dramatic or dramatico-musical work; a
|
||||
choreographic work or entertainment in dumb show; a musical
|
||||
composition with or without words; a cinematographic work to which are
|
||||
assimilated works expressed by a process analogous to cinematography;
|
||||
a work of drawing, painting, architecture, sculpture, engraving or
|
||||
lithography; a photographic work to which are assimilated works
|
||||
expressed by a process analogous to photography; a work of applied
|
||||
art; an illustration, map, plan, sketch or three-dimensional work
|
||||
relative to geography, topography, architecture or science; a
|
||||
performance; a broadcast; a phonogram; a compilation of data to the
|
||||
extent it is protected as a copyrightable work; or a work performed by
|
||||
a variety or circus performer to the extent it is not otherwise
|
||||
considered a literary or artistic work.
|
||||
i. “You” means an individual or entity exercising rights under this
|
||||
License who has not previously violated the terms of this License with
|
||||
respect to the Work, or who has received express permission from the
|
||||
Licensor to exercise rights under this License despite a previous
|
||||
violation.
|
||||
j. “Publicly Perform” means to perform public recitations of the Work and
|
||||
to communicate to the public those public recitations, by any means or
|
||||
process, including by wire or wireless means or public digital
|
||||
performances; to make available to the public Works in such a way that
|
||||
members of the public may access these Works from a place and at a
|
||||
place individually chosen by them; to perform the Work to the public
|
||||
by any means or process and the communication to the public of the
|
||||
performances of the Work, including by public digital performance; to
|
||||
broadcast and rebroadcast the Work by any means including signs,
|
||||
sounds or images.
|
||||
k. “Reproduce” means to make copies of the Work by any means including
|
||||
without limitation by sound or visual recordings and the right of
|
||||
fixation and reproducing fixations of the Work, including storage of a
|
||||
protected performance or phonogram in digital form or other electronic
|
||||
medium.
|
||||
|
||||
2. Fair Dealing Rights. Nothing in this License is intended to reduce,
|
||||
limit, or restrict any uses free from copyright or rights arising from
|
||||
limitations or exceptions that are provided for in connection with the
|
||||
copyright protection under copyright law or other applicable laws.
|
||||
|
||||
3. License Grant. Subject to the terms and conditions of this License,
|
||||
Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
|
||||
perpetual (for the duration of the applicable copyright) license to
|
||||
exercise the rights in the Work as stated below:
|
||||
|
||||
a. to Reproduce the Work, to incorporate the Work into one or more
|
||||
Collections, and to Reproduce the Work as incorporated in the
|
||||
Collections;
|
||||
b. to create and Reproduce Adaptations provided that any such Adaptation,
|
||||
including any translation in any medium, takes reasonable steps to
|
||||
clearly label, demarcate or otherwise identify that changes were made
|
||||
to the original Work. For example, a translation could be marked “The
|
||||
original work was translated from English to Spanish,” or a
|
||||
modification could indicate “The original work has been modified.”;
|
||||
c. to Distribute and Publicly Perform the Work including as incorporated
|
||||
in Collections; and,
|
||||
d. to Distribute and Publicly Perform Adaptations.
|
||||
e. For the avoidance of doubt:
|
||||
|
||||
i. Non-waivable Compulsory License Schemes. In those jurisdictions in
|
||||
which the right to collect royalties through any statutory or
|
||||
compulsory licensing scheme cannot be waived, the Licensor
|
||||
reserves the exclusive right to collect such royalties for any
|
||||
exercise by You of the rights granted under this License;
|
||||
ii. Waivable Compulsory License Schemes. In those jurisdictions in
|
||||
which the right to collect royalties through any statutory or
|
||||
compulsory licensing scheme can be waived, the Licensor waives the
|
||||
exclusive right to collect such royalties for any exercise by You
|
||||
of the rights granted under this License; and,
|
||||
iii. Voluntary License Schemes. The Licensor waives the right to
|
||||
collect royalties, whether individually or, in the event that the
|
||||
Licensor is a member of a collecting society that administers
|
||||
voluntary licensing schemes, via that society, from any exercise
|
||||
by You of the rights granted under this License.
|
||||
|
||||
The above rights may be exercised in all media and formats whether now
|
||||
known or hereafter devised. The above rights include the right to make
|
||||
such modifications as are technically necessary to exercise the rights in
|
||||
other media and formats. Subject to Section 8(f), all rights not expressly
|
||||
granted by Licensor are hereby reserved.
|
||||
|
||||
4. Restrictions. The license granted in Section 3 above is expressly made
|
||||
subject to and limited by the following restrictions:
|
||||
|
||||
a. You may Distribute or Publicly Perform the Work only under the terms
|
||||
of this License. You must include a copy of, or the Uniform Resource
|
||||
Identifier (URI) for, this License with every copy of the Work You
|
||||
Distribute or Publicly Perform. You may not offer or impose any terms
|
||||
on the Work that restrict the terms of this License or the ability of
|
||||
the recipient of the Work to exercise the rights granted to that
|
||||
recipient under the terms of the License. You may not sublicense the
|
||||
Work. You must keep intact all notices that refer to this License and
|
||||
to the disclaimer of warranties with every copy of the Work You
|
||||
Distribute or Publicly Perform. When You Distribute or Publicly
|
||||
Perform the Work, You may not impose any effective technological
|
||||
measures on the Work that restrict the ability of a recipient of the
|
||||
Work from You to exercise the rights granted to that recipient under
|
||||
the terms of the License. This Section 4(a) applies to the Work as
|
||||
incorporated in a Collection, but this does not require the Collection
|
||||
apart from the Work itself to be made subject to the terms of this
|
||||
License. If You create a Collection, upon notice from any Licensor You
|
||||
must, to the extent practicable, remove from the Collection any credit
|
||||
as required by Section 4(c), as requested. If You create an
|
||||
Adaptation, upon notice from any Licensor You must, to the extent
|
||||
practicable, remove from the Adaptation any credit as required by
|
||||
Section 4(c), as requested.
|
||||
b. You may Distribute or Publicly Perform an Adaptation only under the
|
||||
terms of: (i) this License; (ii) a later version of this License with
|
||||
the same License Elements as this License; (iii) a Creative Commons
|
||||
jurisdiction license (either this or a later license version) that
|
||||
contains the same License Elements as this License (e.g.,
|
||||
Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible
|
||||
License. If you license the Adaptation under one of the licenses
|
||||
mentioned in (iv), you must comply with the terms of that license. If
|
||||
you license the Adaptation under the terms of any of the licenses
|
||||
mentioned in (i), (ii) or (iii) (the “Applicable License”), you must
|
||||
comply with the terms of the Applicable License generally and the
|
||||
following provisions: (I) You must include a copy of, or the URI for,
|
||||
the Applicable License with every copy of each Adaptation You
|
||||
Distribute or Publicly Perform; (II) You may not offer or impose any
|
||||
terms on the Adaptation that restrict the terms of the Applicable
|
||||
License or the ability of the recipient of the Adaptation to exercise
|
||||
the rights granted to that recipient under the terms of the Applicable
|
||||
License; (III) You must keep intact all notices that refer to the
|
||||
Applicable License and to the disclaimer of warranties with every copy
|
||||
of the Work as included in the Adaptation You Distribute or Publicly
|
||||
Perform; (IV) when You Distribute or Publicly Perform the Adaptation,
|
||||
You may not impose any effective technological measures on the
|
||||
Adaptation that restrict the ability of a recipient of the Adaptation
|
||||
from You to exercise the rights granted to that recipient under the
|
||||
terms of the Applicable License. This Section 4(b) applies to the
|
||||
Adaptation as incorporated in a Collection, but this does not require
|
||||
the Collection apart from the Adaptation itself to be made subject to
|
||||
the terms of the Applicable License.
|
||||
c. If You Distribute, or Publicly Perform the Work or any Adaptations or
|
||||
Collections, You must, unless a request has been made pursuant to
|
||||
Section 4(a), keep intact all copyright notices for the Work and
|
||||
provide, reasonable to the medium or means You are utilizing: (i) the
|
||||
name of the Original Author (or pseudonym, if applicable) if supplied,
|
||||
and/or if the Original Author and/or Licensor designate another party
|
||||
or parties (e.g., a sponsor institute, publishing entity, journal) for
|
||||
attribution (“Attribution Parties”) in Licensor’s copyright notice,
|
||||
terms of service or by other reasonable means, the name of such party
|
||||
or parties; (ii) the title of the Work if supplied; (iii) to the
|
||||
extent reasonably practicable, the URI, if any, that Licensor
|
||||
specifies to be associated with the Work, unless such URI does not
|
||||
refer to the copyright notice or licensing information for the Work;
|
||||
and (iv) , consistent with Ssection 3(b), in the case of an
|
||||
Adaptation, a credit identifying the use of the Work in the Adaptation
|
||||
(e.g., “French translation of the Work by Original Author,” or
|
||||
“Screenplay based on original Work by Original Author”). The credit
|
||||
required by this Section 4(c) may be implemented in any reasonable
|
||||
manner; provided, however, that in the case of a Adaptation or
|
||||
Collection, at a minimum such credit will appear, if a credit for all
|
||||
contributing authors of the Adaptation or Collection appears, then as
|
||||
part of these credits and in a manner at least as prominent as the
|
||||
credits for the other contributing authors. For the avoidance of
|
||||
doubt, You may only use the credit required by this Section for the
|
||||
purpose of attribution in the manner set out above and, by exercising
|
||||
Your rights under this License, You may not implicitly or explicitly
|
||||
assert or imply any connection with, sponsorship or endorsement by the
|
||||
Original Author, Licensor and/or Attribution Parties, as appropriate,
|
||||
of You or Your use of the Work, without the separate, express prior
|
||||
written permission of the Original Author, Licensor and/or Attribution
|
||||
Parties.
|
||||
d. Except as otherwise agreed in writing by the Licensor or as may be
|
||||
otherwise permitted by applicable law, if You Reproduce, Distribute or
|
||||
Publicly Perform the Work either by itself or as part of any
|
||||
Adaptations or Collections, You must not distort, mutilate, modify or
|
||||
take other derogatory action in relation to the Work which would be
|
||||
prejudicial to the Original Author’s honor or reputation. Licensor
|
||||
agrees that in those jurisdictions (e.g. Japan), in which any exercise
|
||||
of the right granted in Section 3(b) of this License (the right to
|
||||
make Adaptations) would be deemed to be a distortion, mutilation,
|
||||
modification or other derogatory action prejudicial to the Original
|
||||
Author’s honor and reputation, the Licensor will waive or not assert,
|
||||
as appropriate, this Section, to the fullest extent permitted by the
|
||||
applicable national law, to enable You to reasonably exercise Your
|
||||
right under Section 3(b) of this License (right to make Adaptations)
|
||||
but not otherwise.
|
||||
|
||||
5. Representations, Warranties and Disclaimer
|
||||
|
||||
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
|
||||
OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
|
||||
KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
|
||||
INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
|
||||
LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
|
||||
WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
|
||||
OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
||||
|
||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
|
||||
LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
|
||||
ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
|
||||
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
|
||||
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
7. Termination
|
||||
|
||||
a. This License and the rights granted hereunder will terminate
|
||||
automatically upon any breach by You of the terms of this License.
|
||||
Individuals or entities who have received Adaptations or Collections
|
||||
from You under this License, however, will not have their licenses
|
||||
terminated provided such individuals or entities remain in full
|
||||
compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
|
||||
survive any termination of this License.
|
||||
b. Subject to the above terms and conditions, the license granted here is
|
||||
perpetual (for the duration of the applicable copyright in the Work).
|
||||
Notwithstanding the above, Licensor reserves the right to release the
|
||||
Work under different license terms or to stop distributing the Work at
|
||||
any time; provided, however that any such election will not serve to
|
||||
withdraw this License (or any other license that has been, or is
|
||||
required to be, granted under the terms of this License), and this
|
||||
License will continue in full force and effect unless terminated as
|
||||
stated above.
|
||||
|
||||
8. Miscellaneous
|
||||
|
||||
a. Each time You Distribute or Publicly Perform the Work or a Collection,
|
||||
the Licensor offers to the recipient a license to the Work on the same
|
||||
terms and conditions as the license granted to You under this License.
|
||||
b. Each time You Distribute or Publicly Perform an Adaptation, Licensor
|
||||
offers to the recipient a license to the original Work on the same
|
||||
terms and conditions as the license granted to You under this License.
|
||||
c. If any provision of this License is invalid or unenforceable under
|
||||
applicable law, it shall not affect the validity or enforceability of
|
||||
the remainder of the terms of this License, and without further action
|
||||
by the parties to this agreement, such provision shall be reformed to
|
||||
the minimum extent necessary to make such provision valid and
|
||||
enforceable.
|
||||
d. No term or provision of this License shall be deemed waived and no
|
||||
breach consented to unless such waiver or consent shall be in writing
|
||||
and signed by the party to be charged with such waiver or consent.
|
||||
e. This License constitutes the entire agreement between the parties with
|
||||
respect to the Work licensed here. There are no understandings,
|
||||
agreements or representations with respect to the Work not specified
|
||||
here. Licensor shall not be bound by any additional provisions that
|
||||
may appear in any communication from You. This License may not be
|
||||
modified without the mutual written agreement of the Licensor and You.
|
||||
f. The rights granted under, and the subject matter referenced, in this
|
||||
License were drafted utilizing the terminology of the Berne Convention
|
||||
for the Protection of Literary and Artistic Works (as amended on
|
||||
September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
|
||||
Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996
|
||||
and the Universal Copyright Convention (as revised on July 24, 1971).
|
||||
These rights and subject matter take effect in the relevant
|
||||
jurisdiction in which the License terms are sought to be enforced
|
||||
according to the corresponding provisions of the implementation of
|
||||
those treaty provisions in the applicable national law. If the
|
||||
standard suite of rights granted under applicable copyright law
|
||||
includes additional rights not granted under this License, such
|
||||
additional rights are deemed to be included in the License; this
|
||||
License is not intended to restrict the license of any rights under
|
||||
applicable law.
|
||||
|
||||
|
||||
Creative Commons Notice
|
||||
|
||||
Creative Commons is not a party to this License, and makes no warranty
|
||||
whatsoever in connection with the Work. Creative Commons will not be
|
||||
liable to You or any party on any legal theory for any damages
|
||||
whatsoever, including without limitation any general, special,
|
||||
incidental or consequential damages arising in connection to this
|
||||
license. Notwithstanding the foregoing two (2) sentences, if Creative
|
||||
Commons has expressly identified itself as the Licensor hereunder, it
|
||||
shall have all rights and obligations of Licensor.
|
||||
|
||||
Except for the limited purpose of indicating to the public that the
|
||||
Work is licensed under the CCPL, Creative Commons does not authorize
|
||||
the use by either party of the trademark “Creative Commons” or any
|
||||
related trademark or logo of Creative Commons without the prior
|
||||
written consent of Creative Commons. Any permitted use will be in
|
||||
compliance with Creative Commons’ then-current trademark usage
|
||||
guidelines, as may be published on its website or otherwise made
|
||||
available upon request from time to time. For the avoidance of doubt,
|
||||
this trademark restriction does not form part of the License.
|
||||
|
||||
Creative Commons may be contacted at https://creativecommons.org/.
|
BIN
isableFastRender/css/fonts/blokletters/blokletters-bold.woff
Normal file
BIN
isableFastRender/css/fonts/blokletters/blokletters-bold.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/blokletters/blokletters-light.woff
Normal file
BIN
isableFastRender/css/fonts/blokletters/blokletters-light.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/blokletters/blokletters-regular.woff
Normal file
BIN
isableFastRender/css/fonts/blokletters/blokletters-regular.woff
Normal file
Binary file not shown.
201
isableFastRender/css/fonts/calligraffiti/Apache License.txt
Normal file
201
isableFastRender/css/fonts/calligraffiti/Apache License.txt
Normal file
@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
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.
|
BIN
isableFastRender/css/fonts/calligraffiti/calligraffiti.woff
Normal file
BIN
isableFastRender/css/fonts/calligraffiti/calligraffiti.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/calligraffiti/calligraffiti.woff2
Normal file
BIN
isableFastRender/css/fonts/calligraffiti/calligraffiti.woff2
Normal file
Binary file not shown.
201
isableFastRender/css/fonts/clear-sans/Apache License.txt
Normal file
201
isableFastRender/css/fonts/clear-sans/Apache License.txt
Normal file
@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
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.
|
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Bold.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Bold.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-BoldItalic.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-BoldItalic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Italic.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Italic.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Light.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Light.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Medium.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Medium.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Regular.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Regular.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Thin.woff
Normal file
BIN
isableFastRender/css/fonts/clear-sans/ClearSans-Thin.woff
Normal file
Binary file not shown.
44
isableFastRender/css/fonts/felipa/LICENSE
Normal file
44
isableFastRender/css/fonts/felipa/LICENSE
Normal file
@ -0,0 +1,44 @@
|
||||
Copyright (c) 2011 Fontstage (info@fontstage.com),
|
||||
with Reserved Font Names, "Felipa"
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
|
BIN
isableFastRender/css/fonts/felipa/felipa.otf
Normal file
BIN
isableFastRender/css/fonts/felipa/felipa.otf
Normal file
Binary file not shown.
9
isableFastRender/css/fonts/kingthings-wrote/License.txt
Normal file
9
isableFastRender/css/fonts/kingthings-wrote/License.txt
Normal file
@ -0,0 +1,9 @@
|
||||
I am constantly working on all my fonts so these may well not be the last versions, please check my web site at:
|
||||
|
||||
http://www.kingthingsfonts.co.uk/fonts/fonts.htm
|
||||
|
||||
for updates and new fonts.
|
||||
|
||||
I hope you enjoy using my fonts and I would appreciate any feedback from you regarding missing characters, things that would be useful, bits that don't work and so on. Also, please let me know if you have downloaded it for use on a Mac - I have had some reports of Mac versions not working… Please email me at:
|
||||
|
||||
kevinking@kingthings.freeserve.co.uk
|
Binary file not shown.
Binary file not shown.
202
isableFastRender/css/fonts/montez/LICENSE
Normal file
202
isableFastRender/css/fonts/montez/LICENSE
Normal file
@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
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.
|
BIN
isableFastRender/css/fonts/montez/montez.woff
Normal file
BIN
isableFastRender/css/fonts/montez/montez.woff
Normal file
Binary file not shown.
5
isableFastRender/css/fonts/note-this/License.txt
Normal file
5
isableFastRender/css/fonts/note-this/License.txt
Normal file
@ -0,0 +1,5 @@
|
||||
This font was found on the internet and did not come with a license. While we try to make sure that all the fonts on fontsquirrel.com are properly licensed for commercial use, there are many fonts that have either been abandoned by their authors or the authors distribute their fonts without an explicit license.
|
||||
|
||||
It is our opinion that if the unlicensed font is freely available for download from either the original source or from multiple free-font sites then we assume it to be safe to use the font commercially. This is no guarantee of such freedom, but there are so many unlicensed free fonts distributed by primary sources that the intentions must be read that the font is free to use how you like.
|
||||
|
||||
We are not lawyers and don’t pretend to be them on TV. Please report any errors/violations you know of. http://www.fontsquirrel.com/contact
|
BIN
isableFastRender/css/fonts/note-this/note-this.woff
Normal file
BIN
isableFastRender/css/fonts/note-this/note-this.woff
Normal file
Binary file not shown.
BIN
isableFastRender/css/fonts/note-this/note-this.woff2
Normal file
BIN
isableFastRender/css/fonts/note-this/note-this.woff2
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user