From b5d27b3fc910c8e0f31f9997742b78774f2fb262 Mon Sep 17 00:00:00 2001 From: Nis Wechselberg Date: Wed, 11 Jul 2018 20:45:17 +0200 Subject: [PATCH] Erster Entwurf --- Skeptiker-Nord.sublime-project | 8 + Skeptiker-Nord.sublime-workspace | 1212 ++++++ archetypes/default.md | 6 + config.toml | 275 ++ content/Datenschutz/_index.md | 375 ++ content/Impressum/_index.md | 63 + content/about/_index.md | 18 + content/post/180711-Stammtisch-August.md | 15 + i18n/de.yaml | 67 + i18n/en.yaml | 67 + layouts/partials/authorbox.html | 22 + layouts/partials/footer.html | 16 + layouts/partials/header.html | 36 + layouts/partials/sidebar.html | 12 + layouts/partials/widgets/events.html | 8 + static/Skyline_Skeptiker_Nord.svg | 271 ++ static/css/style.css | 1168 ++++++ themes/mainroad/.editorconfig | 19 + themes/mainroad/.gitignore | 19 + themes/mainroad/.stylelintrc | 317 ++ themes/mainroad/LICENSE.md | 361 ++ themes/mainroad/README.md | 122 + themes/mainroad/archetypes/default.md | 10 + themes/mainroad/exampleSite/.gitignore | 2 + themes/mainroad/exampleSite/config.toml | 32 + themes/mainroad/exampleSite/content/about.md | 30 + .../content/post/basic-elements.md | 166 + .../content/post/creating-a-new-theme.md | 1143 ++++++ .../exampleSite/content/post/goisforlovers.md | 344 ++ .../content/post/hugoisforlovers.md | 86 + .../content/post/migrate-from-jekyll.md | 155 + themes/mainroad/exampleSite/data/.gitkeep | 0 themes/mainroad/exampleSite/static/.gitkeep | 0 themes/mainroad/i18n/en.yaml | 63 + themes/mainroad/images/screenshot.png | Bin 0 -> 58734 bytes themes/mainroad/images/tn.png | Bin 0 -> 51105 bytes themes/mainroad/layouts/404.html | 11 + themes/mainroad/layouts/_default/list.html | 39 + themes/mainroad/layouts/_default/single.html | 26 + themes/mainroad/layouts/_default/summary.html | 27 + .../mainroad/layouts/partials/authorbox.html | 22 + .../mainroad/layouts/partials/comments.html | 5 + themes/mainroad/layouts/partials/footer.html | 16 + themes/mainroad/layouts/partials/header.html | 36 + themes/mainroad/layouts/partials/mathjax.html | 3 + themes/mainroad/layouts/partials/menu.html | 14 + .../mainroad/layouts/partials/pagination.html | 11 + .../mainroad/layouts/partials/post_meta.html | 13 + .../mainroad/layouts/partials/post_nav.html | 16 + .../mainroad/layouts/partials/post_tags.html | 10 + .../mainroad/layouts/partials/post_toc.html | 8 + themes/mainroad/layouts/partials/sidebar.html | 11 + .../layouts/partials/widgets/categories.html | 16 + .../layouts/partials/widgets/recent.html | 13 + .../layouts/partials/widgets/search.html | 11 + .../layouts/partials/widgets/social.html | 55 + .../layouts/partials/widgets/taglist.html | 14 + themes/mainroad/package-lock.json | 3584 +++++++++++++++++ themes/mainroad/package.json | 24 + themes/mainroad/static/apple-touch-icon.png | Bin 0 -> 447 bytes themes/mainroad/static/css/style.css | 1158 ++++++ themes/mainroad/static/favicon.ico | Bin 0 -> 1350 bytes themes/mainroad/static/img/avatar.png | Bin 0 -> 1139 bytes themes/mainroad/static/img/placeholder.png | Bin 0 -> 4711 bytes themes/mainroad/static/js/scripts.js | 2 + themes/mainroad/theme.toml | 18 + 66 files changed, 11671 insertions(+) create mode 100644 Skeptiker-Nord.sublime-project create mode 100644 Skeptiker-Nord.sublime-workspace create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/Datenschutz/_index.md create mode 100644 content/Impressum/_index.md create mode 100644 content/about/_index.md create mode 100644 content/post/180711-Stammtisch-August.md create mode 100644 i18n/de.yaml create mode 100644 i18n/en.yaml create mode 100644 layouts/partials/authorbox.html create mode 100644 layouts/partials/footer.html create mode 100644 layouts/partials/header.html create mode 100644 layouts/partials/sidebar.html create mode 100644 layouts/partials/widgets/events.html create mode 100644 static/Skyline_Skeptiker_Nord.svg create mode 100644 static/css/style.css create mode 100644 themes/mainroad/.editorconfig create mode 100644 themes/mainroad/.gitignore create mode 100644 themes/mainroad/.stylelintrc create mode 100644 themes/mainroad/LICENSE.md create mode 100644 themes/mainroad/README.md create mode 100644 themes/mainroad/archetypes/default.md create mode 100644 themes/mainroad/exampleSite/.gitignore create mode 100644 themes/mainroad/exampleSite/config.toml create mode 100644 themes/mainroad/exampleSite/content/about.md create mode 100644 themes/mainroad/exampleSite/content/post/basic-elements.md create mode 100644 themes/mainroad/exampleSite/content/post/creating-a-new-theme.md create mode 100644 themes/mainroad/exampleSite/content/post/goisforlovers.md create mode 100644 themes/mainroad/exampleSite/content/post/hugoisforlovers.md create mode 100644 themes/mainroad/exampleSite/content/post/migrate-from-jekyll.md create mode 100644 themes/mainroad/exampleSite/data/.gitkeep create mode 100644 themes/mainroad/exampleSite/static/.gitkeep create mode 100644 themes/mainroad/i18n/en.yaml create mode 100644 themes/mainroad/images/screenshot.png create mode 100644 themes/mainroad/images/tn.png create mode 100644 themes/mainroad/layouts/404.html create mode 100644 themes/mainroad/layouts/_default/list.html create mode 100644 themes/mainroad/layouts/_default/single.html create mode 100644 themes/mainroad/layouts/_default/summary.html create mode 100644 themes/mainroad/layouts/partials/authorbox.html create mode 100644 themes/mainroad/layouts/partials/comments.html create mode 100644 themes/mainroad/layouts/partials/footer.html create mode 100644 themes/mainroad/layouts/partials/header.html create mode 100644 themes/mainroad/layouts/partials/mathjax.html create mode 100644 themes/mainroad/layouts/partials/menu.html create mode 100644 themes/mainroad/layouts/partials/pagination.html create mode 100644 themes/mainroad/layouts/partials/post_meta.html create mode 100644 themes/mainroad/layouts/partials/post_nav.html create mode 100644 themes/mainroad/layouts/partials/post_tags.html create mode 100644 themes/mainroad/layouts/partials/post_toc.html create mode 100644 themes/mainroad/layouts/partials/sidebar.html create mode 100644 themes/mainroad/layouts/partials/widgets/categories.html create mode 100644 themes/mainroad/layouts/partials/widgets/recent.html create mode 100644 themes/mainroad/layouts/partials/widgets/search.html create mode 100644 themes/mainroad/layouts/partials/widgets/social.html create mode 100644 themes/mainroad/layouts/partials/widgets/taglist.html create mode 100644 themes/mainroad/package-lock.json create mode 100644 themes/mainroad/package.json create mode 100644 themes/mainroad/static/apple-touch-icon.png create mode 100644 themes/mainroad/static/css/style.css create mode 100644 themes/mainroad/static/favicon.ico create mode 100644 themes/mainroad/static/img/avatar.png create mode 100644 themes/mainroad/static/img/placeholder.png create mode 100644 themes/mainroad/static/js/scripts.js create mode 100644 themes/mainroad/theme.toml diff --git a/Skeptiker-Nord.sublime-project b/Skeptiker-Nord.sublime-project new file mode 100644 index 0000000..24db303 --- /dev/null +++ b/Skeptiker-Nord.sublime-project @@ -0,0 +1,8 @@ +{ + "folders": + [ + { + "path": "." + } + ] +} diff --git a/Skeptiker-Nord.sublime-workspace b/Skeptiker-Nord.sublime-workspace new file mode 100644 index 0000000..d7d6dbe --- /dev/null +++ b/Skeptiker-Nord.sublime-workspace @@ -0,0 +1,1212 @@ +{ + "auto_complete": + { + "selected_items": + [ + [ + "Onlinean", + "Onlineangebotes" + ], + [ + "Skep", + "skeptiker-nord" + ], + [ + "std", + "stderrData" + ], + [ + "stderr", + "stderror" + ], + [ + "stde", + "stderror" + ], + [ + "stdout", + "stdoutput" + ], + [ + "stdou", + "stdoutput" + ], + [ + "STA", + "STATE_COMPILE_ERROR" + ], + [ + "STAT", + "STATE_SYSTEM_ERROR" + ], + [ + "to", + "total_tests" + ], + [ + "failed", + "failed_tests" + ], + [ + "form", + "formating_ok" + ], + [ + "fail", + "failed_tests" + ], + [ + "TM", + "TEMPDIR_PREFIX" + ], + [ + "par", + "partDir" + ], + [ + "pa", + "pathpart" + ], + [ + "p", + "paths" + ], + [ + "co", + "compileOutput" + ], + [ + "com", + "compileOutput" + ], + [ + "ou", + "output" + ], + [ + "html", + "htmlOut" + ], + [ + "json", + "jsonIn" + ], + [ + "st", + "student" + ], + [ + "studen", + "studentDB" + ], + [ + "packa", + "packageName" + ], + [ + "dirname", + "dirname" + ], + [ + "temp", + "tempDir" + ], + [ + "fil", + "filename" + ], + [ + "in", + "inputs" + ], + [ + "dir", + "dirNameStart" + ], + [ + "e", + "exercise" + ], + [ + "sh", + "sheet" + ], + [ + "exerciseD", + "exerciseDir" + ], + [ + "sheetD", + "sheetDir" + ], + [ + "fin", + "findDirectory" + ], + [ + "ba", + "baseDir" + ], + [ + "compile", + "compileOutput" + ], + [ + "JP", + "JPLAG_DATA_DIR" + ], + [ + "out", + "outputPipe" + ], + [ + "STATE_", + "STATE_OK" + ], + [ + "COM", + "COMPILATION_ERROR" + ], + [ + "group", + "groupID" + ], + [ + "re", + "return" + ], + [ + "store", + "storeJavaOutput" + ], + [ + "pr", + "program" + ], + [ + "output", + "outputfile" + ], + [ + "ima", + "imageOutput" + ], + [ + "sec", + "securityPolicyFile" + ], + [ + "secur", + "securityPolicy" + ], + [ + "gr", + "groupID" + ], + [ + "ex", + "exercise" + ], + [ + "im", + "imageOutput" + ], + [ + "gz", + "gzip_handler" + ], + [ + "test", + "testState" + ], + [ + "a", + "application" + ], + [ + "time", + "timeout" + ], + [ + "te", + "testOutput" + ], + [ + "java", + "javaProcess" + ], + [ + "ja", + "javaProcess" + ], + [ + "con", + "config" + ], + [ + "compi", + "compileOutput" + ], + [ + "STATE", + "STATE_SYSTEM_ERROR" + ], + [ + "sam", + "sampleSolution" + ], + [ + "xml", + "xmlrequest" + ], + [ + "res", + "response" + ], + [ + "TY", + "TYPE_CODE" + ], + [ + "ST", + "STATE_COMPILE_ERROR" + ], + [ + "file", + "filename" + ], + [ + "up", + "uploaded_file" + ], + [ + "E", + "Encode" + ], + [ + "outp", + "outputPipe" + ], + [ + "gene", + "generated" + ], + [ + "stu", + "studentID" + ], + [ + "error", + "errorMessage" + ], + [ + "S", + "STATE_OK" + ], + [ + "err", + "errorMessage" + ], + [ + "er", + "error" + ], + [ + "TYP", + "TYPE_UPLOAD" + ], + [ + "texthei", + "textheight\tlatex-document" + ] + ] + }, + "buffers": + [ + { + "file": "content/Datenschutz/_index.md", + "settings": + { + "buffer_size": 24994, + "encoding": "UTF-8", + "line_ending": "Unix", + "name": "

Datenschutzerklärung

", + "

", + "3680ff", + "weight", + "link", + ".logo", + "e64946", + "/reset", + "svg", + ".\n# ", + "\n#", + "=", + "(“”)", + "(false)", + "(", + "# ", + "# ", + "# ", + "40", + "timeOut", + "checks", + "bind n", + "line", + "package", + "config", + "log", + "de.cau.cs.kieler.klighd.viewer", + "stateName", + " />", + "/>", + "paramString", + "toString", + "red", + "groupID", + "3547", + "Blubb", + "suppressch", + "storeGeneratedImage", + "generate", + "chdir", + "imageout", + "/", + "output", + "/teac", + "JPLAG_DATA_DIR", + "rt-teach", + "chdir", + "opcac", + "startPoint", + "DEBUG", + "assert", + "outgoingEd", + "KImage", + "\n \n \n \n \n \n \n \n ", + "KIma", + "exercise", + "jplag", + "klighd.layout.port.side", + "klighd.original.port.side", + " [de.cau.cs.kieler.klighd.suppressSelectability = true\n\t\t\t\t\t\t\tde.cau.cs.kieler.klighd.visibilityScaleLowerBound = 0.49]", + "\t\tklighd.diagramState", + "klighd.entity.position.marker", + " [de.cau.cs.kieler.klighd.suppressSelectability = true]", + " [de.cau.cs.kieler.klighd.visibilityScaleUpperBound = 0.49]", + "[de.cau.cs.kieler.klighd.visibilityScaleUpperBound = 0.49]", + "klighd.entity.label", + "org.eclipse.elk.portConstraints = FREE", + "org.eclipse.elk.layered.nodePlacement.bk.edgeStraightening", + "org.eclipse.elk.scaleFactor = 1.0", + "de.cau.cs.kieler.klighd.expansionAwareLayoutOption", + "klighd.populated", + "pos: ", + "org.eclipse.elk.nodeSize.minHeight", + "org.eclipse.elk.nodeSize.minWidth", + "klighd.original.port.side =", + "de.cau.cs.kieler.klighd.minimalNodeSize", + "de.cau.cs.kieler.klighd.expand", + "org.eclipse.elk.spacing.border", + "org.eclipse.elk.layered.nodePlacement.strategy", + "org.eclipse.elk.algorithm", + "klighd.layoutState", + "klighd.initialNodeSize", + "org.eclipse.elk.edgeRouting = ORTHOGONAL", + "org.eclipse.elk.direction", + "org.eclipse.elk.position", + "klighd.modelElement", + "org.eclipse.elk.direction", + "org.eclipse.elk.edgeRouting", + "klighd.diagramState", + "klighd.populated", + "de.cau.cs.kieler.klighd.expansionAwareLayoutOption", + "klighd.layoutState", + "klighd.initialNodeSize", + "de.cau.cs.kieler.klighd.minimalNodeSize", + "de.cau.cs.kieler.klighd.expand", + "org.eclipse.elk.algorithm", + "org.eclipse.elk.position", + "klighd.modelElement", + "size:", + "^\\s+\n^\\s+\n^\\s+\n^\\s+\n^\\s+\n^\\s+\n^\\s+\n^\\s+\n^\\s+", + "", + "action", + "^\\s+\n\\s+\n\\s+\n\\s+\n\\s+\n\\s+\n\\s+\n\\s+\n\\s+", + "Kimage", + "\n \n \n \n \n \n \n \n ", + "KImage", + "org.eclipse.elk.fixed", + "KImage", + "action", + "KImage", + "action", + "horizontalAlignment", + "action", + "groupID", + "I", + "i", + "I", + "Balance", + "action", + "klighd", + "jplag", + "pdf", + "<<", + "project", + " \n", + " xsi:type=\"krendering:KImage\" bundleName=\"de.cau.cs.kieler.ecoreviz\" imagePath=\"icons/Class.png\">\n \n \n \n \n \n \n \n ", + "<", + "RTSYS" + ], + "reverse": false, + "show_context": true, + "use_buffer2": true, + "whole_word": false, + "wrap": true + }, + "groups": + [ + { + "selected": 3, + "sheets": + [ + { + "buffer": 0, + "file": "content/Datenschutz/_index.md", + "semi_transient": false, + "settings": + { + "buffer_size": 24994, + "regions": + { + }, + "selection": + [ + [ + 23665, + 23665 + ] + ], + "settings": + { + "SL.15.region_keys": + [ + ], + "auto_complete": false, + "auto_name": "

Datenschutzerklärung

+ Diese Datenschutzerklärung klärt Sie über die Art, den Umfang und Zweck + der Verarbeitung von personenbezogenen Daten (nachfolgend kurz „Daten“) + innerhalb unseres Onlineangebotes und der mit ihm verbundenen Webseiten, + Funktionen und Inhalte sowie externen Onlinepräsenzen, + wie z.B. unser Social Media Profile auf (nachfolgend gemeinsam bezeichnet + als „Onlineangebot“). Im Hinblick auf die verwendeten Begrifflichkeiten, + wie z.B. „Verarbeitung“ oder „Verantwortlicher“ verweisen wir auf die + Definitionen im Art. 4 der Datenschutzgrundverordnung (DSGVO).
+
+

+ +

Verantwortlicher

+

+ + Nis Wechselberg
+ c/o GWUP e.V. (Gesellschaft zur wissenschaftlichen Untersuchung von Parawissenschaften e. V.)
+ Arheilger Weg 11
+ 64380 Roßdorf
+
+ E-Mail: nis.wechselberg@skeptiker-nord.de +
+

+ +

Arten der verarbeiteten Daten:

+

+ - Bestandsdaten (z.B., Namen, Adressen).
+ - Kontaktdaten (z.B., E-Mail, Telefonnummern).
+ - Inhaltsdaten (z.B., Texteingaben, Fotografien, Videos).
+ + - Meta-/Kommunikationsdaten (z.B., Geräte-Informationen, IP-Adressen).
+

+ +

Kategorien betroffener Personen

+

+ Besucher und Nutzer des Onlineangebotes (Nachfolgend bezeichnen wir die betroffenen Personen zusammenfassend auch als „Nutzer“).
+

+ +

Zweck der Verarbeitung

+

+ - Zurverfügungstellung des Onlineangebotes, seiner Funktionen und Inhalte.
+ - Beantwortung von Kontaktanfragen und Kommunikation mit Nutzern.
+ +

+ +

Verwendete Begrifflichkeiten

+

+ „Personenbezogene Daten“ sind alle Informationen, die sich auf eine identifizierte + oder identifizierbare natürliche Person (im Folgenden „betroffene Person“) beziehen; + als identifizierbar wird eine natürliche Person angesehen, die direkt oder indirekt, + insbesondere mittels Zuordnung zu einer Kennung wie einem Namen, zu einer Kennnummer, + zu Standortdaten, zu einer Online-Kennung (z.B. Cookie) oder zu einem oder mehreren + besonderen Merkmalen identifiziert werden kann, die Ausdruck der physischen, + physiologischen, genetischen, psychischen, wirtschaftlichen, kulturellen oder sozialen + Identität dieser natürlichen Person sind.
+
+ „Verarbeitung“ ist jeder mit oder ohne Hilfe automatisierter Verfahren ausgeführte Vorgang + oder jede solche Vorgangsreihe im Zusammenhang mit personenbezogenen Daten. + Der Begriff reicht weit und umfasst praktisch jeden Umgang mit Daten.
+
+ „Pseudonymisierung“ die Verarbeitung personenbezogener Daten in einer Weise, + dass die personenbezogenen Daten ohne Hinzuziehung zusätzlicher Informationen nicht mehr + einer spezifischen betroffenen Person zugeordnet werden können, sofern diese zusätzlichen + Informationen gesondert aufbewahrt werden und technischen und organisatorischen Maßnahmen + unterliegen, die gewährleisten, dass die personenbezogenen Daten nicht einer + identifizierten oder identifizierbaren natürlichen Person zugewiesen werden.
+
+ „Profiling“ jede Art der automatisierten Verarbeitung personenbezogener Daten, + die darin besteht, dass diese personenbezogenen Daten verwendet werden, + um bestimmte persönliche Aspekte, die sich auf eine natürliche Person beziehen, + zu bewerten, insbesondere um Aspekte bezüglich Arbeitsleistung, wirtschaftliche Lage, + Gesundheit, persönliche Vorlieben, Interessen, Zuverlässigkeit, Verhalten, Aufenthaltsort + oder Ortswechsel dieser natürlichen Person zu analysieren oder vorherzusagen.
+
+ Als „Verantwortlicher“ wird die natürliche oder juristische Person, Behörde, Einrichtung + oder andere Stelle, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der + Verarbeitung von personenbezogenen Daten entscheidet, bezeichnet.
+
+ „Auftragsverarbeiter“ eine natürliche oder juristische Person, Behörde, Einrichtung oder + andere Stelle, die personenbezogene Daten im Auftrag des Verantwortlichen verarbeitet.
+

+ +

Maßgebliche Rechtsgrundlagen

+

+ Nach Maßgabe des Art. 13 DSGVO teilen wir Ihnen die Rechtsgrundlagen unserer Datenverarbeitungen mit. + Sofern die Rechtsgrundlage in der Datenschutzerklärung nicht genannt wird, gilt Folgendes: + Die Rechtsgrundlage für die Einholung von Einwilligungen ist Art. 6 Abs. 1 lit. a und Art. 7 DSGVO, + die Rechtsgrundlage für die Verarbeitung zur Erfüllung unserer Leistungen und Durchführung vertraglicher + Maßnahmen sowie Beantwortung von Anfragen ist Art. 6 Abs. 1 lit. b DSGVO, die Rechtsgrundlage für die + Verarbeitung zur Erfüllung unserer rechtlichen Verpflichtungen ist Art. 6 Abs. 1 lit. c DSGVO, und die + Rechtsgrundlage für die Verarbeitung zur Wahrung unserer berechtigten Interessen ist Art. 6 Abs. 1 lit. f DSGVO. + Für den Fall, dass lebenswichtige Interessen der betroffenen Person oder einer anderen natürlichen + Person eine Verarbeitung personenbezogener Daten erforderlich machen, dient Art. 6 Abs. 1 lit. d DSGVO + als Rechtsgrundlage. +

+ +

Sicherheitsmaßnahmen

+

+ Wir treffen nach Maßgabe des Art. 32 DSGVO unter Berücksichtigung des Stands der Technik, + der Implementierungskosten und der Art, des Umfangs, der Umstände und der Zwecke der Verarbeitung + sowie der unterschiedlichen Eintrittswahrscheinlichkeit und Schwere des Risikos für die Rechte + und Freiheiten natürlicher Personen, geeignete technische und organisatorische Maßnahmen, + um ein dem Risiko angemessenes Schutzniveau zu gewährleisten.
+
+ Zu den Maßnahmen gehören insbesondere die Sicherung der Vertraulichkeit, Integrität und Verfügbarkeit + von Daten durch Kontrolle des physischen Zugangs zu den Daten, als auch des sie betreffenden Zugriffs, + der Eingabe, Weitergabe, der Sicherung der Verfügbarkeit und ihrer Trennung. Des Weiteren haben wir Verfahren + eingerichtet, die eine Wahrnehmung von Betroffenenrechten, Löschung von Daten und Reaktion auf Gefährdung der + Daten gewährleisten. Ferner berücksichtigen wir den Schutz personenbezogener Daten bereits bei der Entwicklung, + bzw. Auswahl von Hardware, Software sowie Verfahren, entsprechend dem Prinzip des Datenschutzes durch + Technikgestaltung und durch datenschutzfreundliche Voreinstellungen (Art. 25 DSGVO).
+

+ +

Zusammenarbeit mit Auftragsverarbeitern und Dritten

+

+ Sofern wir im Rahmen unserer Verarbeitung Daten gegenüber anderen Personen und Unternehmen + (Auftragsverarbeitern oder Dritten) offenbaren, sie an diese übermitteln oder ihnen sonst Zugriff auf + die Daten gewähren, erfolgt dies nur auf Grundlage einer gesetzlichen Erlaubnis (z.B. wenn eine Übermittlung + der Daten an Dritte, wie an Zahlungsdienstleister, gem. Art. 6 Abs. 1 lit. b DSGVO zur Vertragserfüllung erforderlich ist), + Sie eingewilligt haben, eine rechtliche Verpflichtung dies vorsieht oder auf Grundlage unserer berechtigten Interessen + (z.B. beim Einsatz von Beauftragten, Webhostern, etc.).
+
+ Sofern wir Dritte mit der Verarbeitung von Daten auf Grundlage eines sog. „Auftragsverarbeitungsvertrages“ beauftragen, + geschieht dies auf Grundlage des Art. 28 DSGVO. +

+ +

Übermittlungen in Drittländer

+

+ Sofern wir Daten in einem Drittland (d.h. außerhalb der Europäischen Union (EU) oder des Europäischen + Wirtschaftsraums (EWR)) verarbeiten oder dies im Rahmen der Inanspruchnahme von Diensten Dritter oder Offenlegung, + bzw. Übermittlung von Daten an Dritte geschieht, erfolgt dies nur, wenn es zur Erfüllung unserer + (vor)vertraglichen Pflichten, auf Grundlage Ihrer Einwilligung, aufgrund einer rechtlichen Verpflichtung + oder auf Grundlage unserer berechtigten Interessen geschieht. + Vorbehaltlich gesetzlicher oder vertraglicher Erlaubnisse, verarbeiten oder lassen wir die Daten in einem + Drittland nur beim Vorliegen der besonderen Voraussetzungen der Art. 44 ff. DSGVO verarbeiten. + D.h. die Verarbeitung erfolgt z.B. auf Grundlage besonderer Garantien, wie der offiziell anerkannten Feststellung + eines der EU entsprechenden Datenschutzniveaus (z.B. für die USA durch das „Privacy Shield“) + oder Beachtung offiziell anerkannter spezieller vertraglicher Verpflichtungen (so genannte „Standardvertragsklauseln“). +

+ +

Rechte der betroffenen Personen

+

+ Sie haben das Recht, eine Bestätigung darüber zu verlangen, ob betreffende Daten verarbeitet werden + und auf Auskunft über diese Daten sowie auf weitere Informationen und Kopie der Daten entsprechend Art. 15 DSGVO.
+
+ Sie haben entsprechend. Art. 16 DSGVO das Recht, die Vervollständigung der Sie betreffenden Daten oder + die Berichtigung der Sie betreffenden unrichtigen Daten zu verlangen.
+
+ Sie haben nach Maßgabe des Art. 17 DSGVO das Recht zu verlangen, + dass betreffende Daten unverzüglich gelöscht werden, bzw. alternativ nach Maßgabe des Art. 18 DSGVO + eine Einschränkung der Verarbeitung der Daten zu verlangen.
+
+ Sie haben das Recht zu verlangen, dass die Sie betreffenden Daten, die Sie uns bereitgestellt haben nach + Maßgabe des Art. 20 DSGVO zu erhalten und deren Übermittlung an andere Verantwortliche zu fordern.
+
+ Sie haben ferner gem. Art. 77 DSGVO das Recht, eine Beschwerde bei der zuständigen Aufsichtsbehörde einzureichen. +

+ +

Widerrufsrecht

+

+ Sie haben das Recht, erteilte Einwilligungen gem. Art. 7 Abs. 3 DSGVO mit Wirkung für die Zukunft zu widerrufen +

+ +

Widerspruchsrecht

+

+ Sie können der künftigen Verarbeitung der Sie betreffenden Daten nach Maßgabe des Art. 21 DSGVO jederzeit widersprechen. + Der Widerspruch kann insbesondere gegen die Verarbeitung für Zwecke der Direktwerbung erfolgen. +

+ +

Cookies und Widerspruchsrecht bei Direktwerbung

+

+ Als „Cookies“ werden kleine Dateien bezeichnet, die auf Rechnern der Nutzer gespeichert werden. + Innerhalb der Cookies können unterschiedliche Angaben gespeichert werden. Ein Cookie dient primär dazu, + die Angaben zu einem Nutzer (bzw. dem Gerät auf dem das Cookie gespeichert ist) während oder auch nach seinem Besuch + innerhalb eines Onlineangebotes zu speichern. Als temporäre Cookies, bzw. „Session-Cookies“ oder „transiente Cookies“, + werden Cookies bezeichnet, die gelöscht werden, nachdem ein Nutzer ein Onlineangebot verlässt und seinen Browser schließt. + In einem solchen Cookie kann z.B. der Inhalt eines Warenkorbs in einem Onlineshop oder ein Login-Status gespeichert werden. + Als „permanent“ oder „persistent“ werden Cookies bezeichnet, die auch nach dem Schließen des Browsers gespeichert bleiben. + So kann z.B. der Login-Status gespeichert werden, wenn die Nutzer diese nach mehreren Tagen aufsuchen. + Ebenso können in einem solchen Cookie die Interessen der Nutzer gespeichert werden, die für Reichweitenmessung + oder Marketingzwecke verwendet werden. Als „Third-Party-Cookie“ werden Cookies bezeichnet, + die von anderen Anbietern als dem Verantwortlichen, der das Onlineangebot betreibt, angeboten werden + (andernfalls, wenn es nur dessen Cookies sind spricht man von „First-Party Cookies“).
+
+ Wir setzen im Rahmen unseres Onlineangebotes keine „First-Party Cookies“ ein.
+ +
+ Ein genereller Widerspruch gegen den Einsatz der zu Zwecken des Onlinemarketing eingesetzten Cookies + kann bei einer Vielzahl der Dienste, vor allem im Fall des Trackings, über die US-amerikanische Seite + http://www.aboutads.info/choices/ + oder die EU-Seite http://www.youronlinechoices.com/ erklärt werden. + Des Weiteren kann die Speicherung von Cookies mittels deren Abschaltung in den Einstellungen des Browsers erreicht werden. + +

+ +

Löschung von Daten

+

+ Die von uns verarbeiteten Daten werden nach Maßgabe der Art. 17 und 18 DSGVO gelöscht + oder in ihrer Verarbeitung eingeschränkt. Sofern nicht im Rahmen dieser Datenschutzerklärung + ausdrücklich angegeben, werden die bei uns gespeicherten Daten gelöscht, sobald sie + für ihre Zweckbestimmung nicht mehr erforderlich sind und der Löschung keine gesetzlichen + Aufbewahrungspflichten entgegenstehen. Sofern die Daten nicht gelöscht werden, + weil sie für andere und gesetzlich zulässige Zwecke erforderlich sind, wird deren + Verarbeitung eingeschränkt. + D.h. die Daten werden gesperrt und nicht für andere Zwecke verarbeitet. + Das gilt z.B. für Daten, die aus handels- oder steuerrechtlichen Gründen aufbewahrt werden müssen.
+ +

+

+ +

Onlinepräsenzen in sozialen Medien

+

+

+ Wir unterhalten Onlinepräsenzen innerhalb sozialer Netzwerke und Plattformen, + um mit den dort aktiven Kunden, Interessenten und Nutzern kommunizieren + und sie dort über unsere Leistungen informieren zu können.
+
+ Wir weisen darauf hin, dass dabei Daten der Nutzer außerhalb des Raumes der Europäischen Union + verarbeitet werden können. Hierdurch können sich für die Nutzer Risiken ergeben, + weil so z.B. die Durchsetzung der Rechte der Nutzer erschwert werden könnte. + Im Hinblick auf US-Anbieter die unter dem Privacy-Shield zertifiziert sind, weisen wir darauf hin, + dass sie sich damit verpflichten, die Datenschutzstandards der EU einzuhalten.
+
+ Ferner werden die Daten der Nutzer im Regelfall für Marktforschungs- und Werbezwecke verarbeitet. + So können z.B. aus dem Nutzungsverhalten und sich daraus ergebenden Interessen der Nutzer + Nutzungsprofile erstellt werden. Die Nutzungsprofile können wiederum verwendet werden, + um z.B. Werbeanzeigen innerhalb und außerhalb der Plattformen zu schalten, + die mutmaßlich den Interessen der Nutzer entsprechen. + Zu diesen Zwecken werden im Regelfall Cookies auf den Rechnern der Nutzer gespeichert, + in denen das Nutzungsverhalten und die Interessen der Nutzer gespeichert werden. + Ferner können in den Nutzungsprofilen auch Daten unabhängig der von den Nutzern verwendeten Geräte + gespeichert werden (insbesondere wenn die Nutzer Mitglieder der jeweiligen Plattformen sind + und bei diesen eingeloggt sind).
+
+ Die Verarbeitung der personenbezogenen Daten der Nutzer erfolgt auf Grundlage unserer berechtigten + Interessen an einer effektiven Information der Nutzer und Kommunikation mit den Nutzern + gem. Art. 6 Abs. 1 lit. f. DSGVO. + Falls die Nutzer von den jeweiligen Anbietern um eine Einwilligung in die Datenverarbeitung + gebeten werden (d.h. ihr Einverständnis z.B. über das Anhaken eines Kontrollkästchens oder + Bestätigung einer Schaltfläche erklären) ist die Rechtsgrundlage der + Verarbeitung Art. 6 Abs. 1 lit. a., Art. 7 DSGVO.
+
+ Für eine detaillierte Darstellung der jeweiligen Verarbeitungen und der Widerspruchsmöglichkeiten + (Opt-Out), verweisen wir auf die nachfolgend verlinkten Angaben der Anbieter.
+
+ Auch im Fall von Auskunftsanfragen und der Geltendmachung von Nutzerrechten, weisen wir darauf hin, + dass diese am effektivsten bei den Anbietern geltend gemacht werden können. + Nur die Anbieter haben jeweils Zugriff auf die Daten der Nutzer und können direkt entsprechende Maßnahmen + ergreifen und Auskünfte geben. Sollten Sie dennoch Hilfe benötigen, dann können Sie sich an uns wenden.
+
+ - Facebook (Facebook Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbour, Dublin 2, Irland) + - Datenschutzerklärung: https://www.facebook.com/about/privacy/, + Opt-Out: https://www.facebook.com/settings?tab=ads + und http://www.youronlinechoices.com, + Privacy Shield: + https://www.privacyshield.gov/participant?id=a2zt0000000GnywAAC&status=Active.
+ +
+ - Twitter (Twitter Inc., 1355 Market Street, Suite 900, San Francisco, CA 94103, USA) + - Datenschutzerklärung: https://twitter.com/de/privacy, + Opt-Out: https://twitter.com/personalization, + Privacy Shield: + https://www.privacyshield.gov/participant?id=a2zt0000000TORzAAO&status=Active.
+ +

+

+ +

Einbindung von Diensten und Inhalten Dritter

+

+

+ Wir setzen innerhalb unseres Onlineangebotes auf Grundlage unserer berechtigten Interessen + (d.h. Interesse an der Analyse, Optimierung und wirtschaftlichem Betrieb unseres + Onlineangebotes im Sinne des Art. 6 Abs. 1 lit. f. DSGVO) + Inhalts- oder Serviceangebote von Drittanbietern ein, um deren Inhalte und Services, + wie z.B. Videos oder Schriftarten einzubinden (nachfolgend einheitlich bezeichnet als “Inhalte”).
+
+ Dies setzt immer voraus, dass die Drittanbieter dieser Inhalte, + die IP-Adresse der Nutzer wahrnehmen, da sie ohne die IP-Adresse die Inhalte nicht an deren Browser senden könnten. + Die IP-Adresse ist damit für die Darstellung dieser Inhalte erforderlich. + Wir bemühen uns nur solche Inhalte zu verwenden, deren jeweilige Anbieter die IP-Adresse lediglich zur Auslieferung der Inhalte verwenden. + Drittanbieter können ferner so genannte Pixel-Tags (unsichtbare Grafiken, auch als "Web Beacons" bezeichnet) + für statistische oder Marketingzwecke verwenden. Durch die "Pixel-Tags" können Informationen, + wie der Besucherverkehr auf den Seiten dieser Website ausgewertet werden. + Die pseudonymen Informationen können ferner in Cookies auf dem Gerät der Nutzer gespeichert werden und + unter anderem technische Informationen zum Browser und Betriebssystem, verweisende Webseiten, + Besuchszeit sowie weitere Angaben zur Nutzung unseres Onlineangebotes enthalten, + als auch mit solchen Informationen aus anderen Quellen verbunden werden. +

+

+ +

Youtube

+

+

+ Wir binden die Videos der Plattform “YouTube” des Anbieters Google LLC, + 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA,ein. + Datenschutzerklärung: https://www.google.com/policies/privacy/, + Opt-Out: https://adssettings.google.com/authenticated. +

+

+ +

Google Fonts

+

+

+ Wir binden die Schriftarten ("Google Fonts") des Anbieters Google LLC, + 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, ein. + Datenschutzerklärung: https://www.google.com/policies/privacy/, + Opt-Out: https://adssettings.google.com/authenticated. +

+

+ +

Twitter

+

+

+ Innerhalb unseres Onlineangebotes können Funktionen und Inhalte des Dienstes Twitter, + angeboten durch die Twitter Inc., 1355 Market Street, Suite 900, San Francisco, CA 94103, USA, eingebunden werden. + Hierzu können z.B. Inhalte wie Bilder, Videos oder Texte und Schaltflächen gehören, + mit denen Nutzer Inhalte dieses Onlineangebotes innerhalb von Twitter teilen können.
+ Sofern die Nutzer Mitglieder der Plattform Twitter sind, kann Twitter den Aufruf der + o.g. Inhalte und Funktionen den dortigen Profilen der Nutzer zuordnen. + Twitter ist unter dem Privacy-Shield-Abkommen zertifiziert und bietet hierdurch eine Garantie, + das europäische Datenschutzrecht einzuhalten + ( + https://www.privacyshield.gov/participant?id=a2zt0000000TORzAAO&status=Active). + Datenschutzerklärung: https://twitter.com/de/privacy, + Opt-Out: https://twitter.com/personalization.

+

+Vom Websiteinhaber angepasst
+Erstellt mit Datenschutz-Generator.de von RA Dr. Thomas Schwenke

diff --git a/content/Impressum/_index.md b/content/Impressum/_index.md new file mode 100644 index 0000000..3a515dd --- /dev/null +++ b/content/Impressum/_index.md @@ -0,0 +1,63 @@ +--- +title: "Impressum" +--- + +

+ Angaben gemäß § 5 TMG +

+

+ Skeptiker Nord
+ GWUP Regionalgruppe +

+

+ Vertreten durch:
+ Nis Wechselberg
+ c/o GWUP e.V. (Gesellschaft zur wissenschaftlichen Untersuchung von Parawissenschaften e. V.)
+ Arheilger Weg 11
+ 64380 Roßdorf
+
+ E-Mail: nis.wechselberg@skeptiker-nord.de +

+ +

Haftungsausschluss:

+

Haftung für Inhalte

+

+ Die Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. + Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr übernehmen. + Als Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach + den allgemeinen Gesetzen verantwortlich. Nach §§ 8 bis 10 TMG sind wir als Diensteanbieter + jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen + oder nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen. + Verpflichtungen zur Entfernung oder Sperrung der Nutzung von Informationen nach den + allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem + Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. + Bei Bekanntwerden von entsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfernen. +

+ +

Haftung für Links

+

+ Unser Angebot enthält Links zu externen Webseiten Dritter, + auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte + auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige + Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt + der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt + der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist + jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. + Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen. +

+ +

Urheberrecht

+

+ Die durch die Seitenbetreiber erstellten Inhalte und Werke auf diesen Seiten unterliegen + dem deutschen Urheberrecht. Die Vervielfältigung, Bearbeitung, Verbreitung und + jede Art der Verwertung außerhalb der Grenzen des Urheberrechtes bedürfen der schriftlichen + Zustimmung des jeweiligen Autors bzw. Erstellers. Downloads und Kopien dieser Seite sind nur + für den privaten, nicht kommerziellen Gebrauch gestattet. Soweit die Inhalte auf dieser Seite + nicht vom Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. + Insbesondere werden Inhalte Dritter als solche gekennzeichnet. Sollten Sie trotzdem auf eine + Urheberrechtsverletzung aufmerksam werden, bitten wir um einen entsprechenden Hinweis. + Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Inhalte umgehend entfernen. +

+ +

Website Impressum von impressum-generator.de

+ diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..fc6f3bc --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,18 @@ +--- +title: Über Uns +--- + +Die Skeptiker Nord Regionalgruppe ist eine der jüngsten Regionalgruppen der [GWUP][1]. +Die Gründung fand im Rahmen der Skepkon 2018 statt. + +Wir treffen uns regelmäßig zum Skeptiker-Stammtisch im Restaurant Gutenberg. +Regelmäßig bedeutet hier jeder erste Montag im Monat ab 19:30 Uhr. +Der Stammtisch ist ein lockerer Austausch und steht grundsätzlich allen Interessierten offen. +Wer sich also über kritisches Denken informieren möchte, +oder einfach nur vor dem wachsenden Wahnsinn der Welt flüchten möchte, +ist eingeladen sich bei uns zu melden oder zum vorbeizuschauen. + +Ansonsten kann man uns natürlich auch gerne ein Mail an schicken. + + + [1]: https://www.gwup.org/ diff --git a/content/post/180711-Stammtisch-August.md b/content/post/180711-Stammtisch-August.md new file mode 100644 index 0000000..24c677e --- /dev/null +++ b/content/post/180711-Stammtisch-August.md @@ -0,0 +1,15 @@ +--- +title: Stammtisch am 6. August 2018 +author: eNBeWe +type: post +date: 2018-07-11T20:22:12+02:00 +categories: + - Stammtisch +--- + +Unser nächster Stammtisch findet am 6. August 2018 um 19:30 Uhr statt. +Der Ort für unseren Stammtisch hat sich geändert. +Wir treffen uns im Restaurant [Gutenberg][1], in der Gutenbergstraße 66, 24118 Kiel. +Hier haben wir in Zukunft vermutlich auch genug Platz um Vorträge veranstalten zu können. + + [1]: https://www.gutenberg-kiel.de/ diff --git a/i18n/de.yaml b/i18n/de.yaml new file mode 100644 index 0000000..a7a91d8 --- /dev/null +++ b/i18n/de.yaml @@ -0,0 +1,67 @@ +# General +- id: read_more + translation: Mehr… + +# Post meta +- id: meta_lastmod + translation: Zuletzt geändert + +# Table of Contents +- id: toc_title + translation: Inhalt + +# Post nav +- id: post_nav_prev + translation: Vorheriger Beitrag + +- id: post_nav_next + translation: Nächster Beitrag + +# Authorbox +- id: authorbox_name + translation: Über {{ .Count }} + +# Sidebar +- id: sidebar_warning + translation: ACHTUNG + +- id: sidebar_recommendation + translation: Bitte aktiviere mindestens ein Widget in der Seitenleiste. + +# Events widget +- id: events_title + translation: Unser nächster Termin + +# Search widget +- id: search_placeholder + translation: Suchen... + +# Categories widget +- id: categories_title + translation: Kategorien + +# Recent Posts widget +- id: recent_title + translation: Letzte Beiträge + +# Social widget +- id: social_title + translation: Soziales + +# Tags List widget +- id: tags_title + translation: Schlagworte + +# Footer +- id: footer_credits + translation: "Erzeugt mit Hugo und Mainroad theme." + +# 404 +- id: 404_title + translation: 404. Seite nicht gefunden + +- id: 404_text + translation: "Die gesuchte Seite wurde anscheinend verschoben, gelöscht oder existiert nicht. Bitte benutze die Suche oder gehe zur" + +- id: 404_linktext + translation: "Startseite" diff --git a/i18n/en.yaml b/i18n/en.yaml new file mode 100644 index 0000000..27c0334 --- /dev/null +++ b/i18n/en.yaml @@ -0,0 +1,67 @@ +# General +- id: read_more + translation: Read more… + +# Post meta +- id: meta_lastmod + translation: Last Modified + +# Table of Contents +- id: toc_title + translation: Page content + +# Post nav +- id: post_nav_prev + translation: Previous + +- id: post_nav_next + translation: Next + +# Authorbox +- id: authorbox_name + translation: About {{ .Count }} + +# Sidebar +- id: sidebar_warning + translation: WARNING + +- id: sidebar_recommendation + translation: Please activate at least one sidebar widget. + +# Events widget +- id: events_title + translation: Our next Event + +# Search widget +- id: search_placeholder + translation: SEARCH... + +# Categories widget +- id: categories_title + translation: Categories + +# Recent Posts widget +- id: recent_title + translation: Recent Posts + +# Social widget +- id: social_title + translation: Social + +# Tags List widget +- id: tags_title + translation: Tags + +# Footer +- id: footer_credits + translation: "Generated with Hugo and Mainroad theme." + +# 404 +- id: 404_title + translation: 404. Page not found + +- id: 404_text + translation: "The page you were looking for appears to have been moved, deleted or does not exist. Please, use search or go to" + +- id: 404_linktext + translation: "main page" diff --git a/layouts/partials/authorbox.html b/layouts/partials/authorbox.html new file mode 100644 index 0000000..6b19056 --- /dev/null +++ b/layouts/partials/authorbox.html @@ -0,0 +1,22 @@ +{{- if .Param "authorbox" }} +
+ {{- if and (not .Params.Author.avatar) (not .Params.Author.name) (not .Params.Author.bio) }} +

WARNING: Authorbox is activated, but [Author] parameters are not specified.

+ {{- end }} + {{- with .Params.Author.avatar }} +
+ {{ $.Params.Author.name }} avatar +
+ {{- end }} + {{- with .Params.Author.name }} +
+ {{ T "authorbox_name" . }} +
+ {{- end }} + {{- with .Params.Author.bio }} +
+ {{ . }} +
+ {{- end }} +
+{{- end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..3ae6a50 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,16 @@ + + + + + +{{- partial "mathjax.html" . -}} + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..4565d39 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,36 @@ + + + + + + + {{ .Title }} + + {{ .Hugo.Generator }} + {{ if .Site.Params.opengraph }}{{ template "_internal/opengraph.html" . }}{{ end }} + {{ if .Site.Params.twitter_cards }}{{ template "_internal/twitter_cards.html" . }}{{ end }} + + + {{- range .AlternativeOutputFormats }} + + {{- end }} + + + + + + +
+
+
+ +
+ {{ partial "menu.html" . }} +
+
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html new file mode 100644 index 0000000..4e3226a --- /dev/null +++ b/layouts/partials/sidebar.html @@ -0,0 +1,12 @@ + diff --git a/layouts/partials/widgets/events.html b/layouts/partials/widgets/events.html new file mode 100644 index 0000000..2022478 --- /dev/null +++ b/layouts/partials/widgets/events.html @@ -0,0 +1,8 @@ +{{- if .Site.Params.widgets.events }} +
+

{{ T "events_title" }}

+
+ Skeptiker Stammtisch am 6. August 2018 um 19:30 Uhr im Restaurant Gutenberg. +
+
+{{- end }} diff --git a/static/Skyline_Skeptiker_Nord.svg b/static/Skyline_Skeptiker_Nord.svg new file mode 100644 index 0000000..2534efe --- /dev/null +++ b/static/Skyline_Skeptiker_Nord.svg @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Regionalgruppe + Skeptiker Nord + + + diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..5ca0e42 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,1168 @@ +*, +*::before, +*::after { + box-sizing: border-box; +} + +article, +aside, +dialog, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section { + display: block; +} + +:focus::-webkit-input-placeholder { + color: transparent; +} + +:focus::-moz-placeholder { + color: transparent; +} + +:focus:-moz-placeholder { + color: transparent; +} + +:focus:-ms-input-placeholder { + color: transparent; +} + +/* Structure */ +html { + font-size: 100%; + -ms-text-size-adjust: none; + -webkit-text-size-adjust: none; +} + +body { + margin: 0; + font-family: "Open Sans", Helvetica, Arial, sans-serif; + font-size: 14px; + font-size: .875rem; + line-height: 1.6; + word-wrap: break-word; + background: #f7f7f7; + -webkit-font-smoothing: antialiased; +} + +.body-right-sidebar .main { + float: left; + margin-right: 2.5%; +} + +.body-left-sidebar .main { + float: right; + margin-left: 2.5%; +} + +.container, +.container-inner { + position: relative; + width: 100%; + max-width: 1080px; + margin: 0 auto; +} + +.container-outer { + margin: 25px auto; + box-shadow: 0 0 10px rgba(50, 50, 50, .17); +} + +.wrapper { + padding: 25px; + background: #fff; +} + +.content { + width: 65.83%; + overflow: hidden; +} + +.sidebar { + float: left; + width: 31.66%; +} + +.clearfix { + display: block; +} + +.clearfix::after { + display: block; + height: 0; + padding: 0; + margin: 0; + clear: both; + line-height: 0; + visibility: hidden; + content: ""; +} + +/* Button */ +.btn { + padding: 5px 10px; + font-weight: 700; + color: #fff; + white-space: pre-line; + background: #2a2a2a; +} + +.btn:hover { + color: #fff; + background: #00a0e1; +} + +/* Animation */ +.menu__item, +.btn { + -webkit-transition: background-color .25s ease-out; + -moz-transition: background-color .25s ease-out; + transition: background-color .25s ease-out; +} + +/* Typography */ +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0 0 20px; + margin: 0 0 1.25rem; + font-weight: 700; + line-height: 1.3; + color: #000; +} + +h1 { + font-size: 32px; + font-size: 2rem; +} + +h2 { + font-size: 24px; + font-size: 1.5rem; +} + +h3 { + font-size: 20px; + font-size: 1.25rem; +} + +h4 { + font-size: 18px; + font-size: 1.125rem; +} + +h5 { + font-size: 16px; + font-size: 1rem; +} + +h6 { + font-size: 16px; + font-size: 1rem; +} + + +a { + color: #00a0e1; + font-weight: 700; + text-decoration: none; +} + +a:hover { + color: #000; +} + +hr { + margin: 0 0 20px; + border: 0; + border-top: 1px solid #dadada; +} + +p { + margin: 0 0 20px; + margin: 0 0 1.25rem; +} + +b, +strong { + font: inherit; + font-weight: 700; +} + +i, +em { + font: inherit; + font-style: italic; +} + +ol, +ul { + padding: 0; + margin: 0; +} + +small { + font-size: 12px; + font-size: .75rem; +} + +mark { + background-color: #fd5; +} + +figure { + margin: 0 0 20px; + margin: 0 0 1.25rem; +} + +figcaption { + color: #999; +} + +pre, +code, +kbd, +samp { + font-family: "Consolas", Courier New, Courier, monospace; + font-size: inherit; +} + +pre, +code { + background-color: #f5f5f5; + border: 1px solid #ebebeb; +} + +code { + padding: 0 5px; + color: #c33; + white-space: nowrap; + white-space: -o-nowrap; + white-space: -moz-nowrap; + white-space: -webkit-nowrap; +} + +pre { + display: block; + padding: 0; + padding: 1.25rem; + margin-bottom: 20px; + margin-bottom: 1.25rem; + color: #000; + white-space: pre-wrap; + white-space: -o-pre-wrap; + white-space: -moz-pre-wrap; + white-space: -webkit-pre-wrap; +} + +pre code { + padding: 0; + color: inherit; + white-space: inherit; + background: inherit; + border: 0; +} + +kbd { + padding: 2px 3px; + color: #fff; + background-color: #2a2a2a; +} + +blockquote { + display: block; + padding: 5px 0 5px 15px; + margin: 0 0 20px; + margin: 0 0 1.25rem; + line-height: 1.6; + border-left: 5px solid #00a0e1; +} + +blockquote p:last-child { + margin: 0; +} + +blockquote footer { + text-align: right; +} + +sup, +sub { + font-size: 10px; + font-size: .625rem; + font-style: normal; +} + +sup { + vertical-align: super; +} + +sub { + vertical-align: sub; +} + +abbr[title] { + text-decoration: none; + cursor: help; + border-bottom: 1px dotted #000; +} + +q { + font-style: italic; +} + +address { + margin-bottom: 20px; + margin-bottom: 1.25rem; + font-family: "Consolas", Courier New, Courier, monospace; + line-height: 1.5; +} + +dl { + margin: 0 0 10px 20px; +} + +dt, +dd { + display: list-item; +} + +dt { + font-weight: bold; + list-style-type: square; +} + +dd { + margin-left: 20px; + list-style-type: circle; +} + +select { + max-width: 100%; +} + +.warning { + padding: 20px 10px; + text-align: center; + border: 1px solid #ddd; +} + +.warning__icon { + margin-bottom: 20px; +} + +/* Header */ +.header { + background: #fff; +} + +.logo { +/* padding: 25px; */ +} + +.logo__link { + display: inline-block; + text-transform: uppercase; +} + +.logo__title { + font-size: 32px; + font-size: 2rem; + font-weight: 700; + line-height: 1; + color: #000; +} + +.logo__tagline { + display: inline-block; + padding-top: 10px; + margin-top: 10px; + font-size: 14px; + font-size: .875rem; + font-weight: 700; + line-height: 1; + color: #00a0e1; + border-top: 1px solid #ebebeb; +} + +.divider { + height: 5px; + margin: 0; + background: #00a0e1; + border: 0; +} + +/* Navigation — Responsive-nav.js */ +.menu { + position: relative; + width: 100%; + margin: 0 auto; + text-transform: uppercase; + background: #2a2a2a; +} + +.menu__toggle { + display: block; + padding: 10px 15px; + font-weight: 700; + color: #fff; + text-align: right; + text-transform: uppercase; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + background: #2a2a2a; + -webkit-tap-highlight-color: #000; + -webkit-touch-callout: none; +} + +.menu__list { + display: block; + width: 100%; + padding: 0; + margin: 0; + list-style: none; +} + +.menu__link { + display: block; + padding: 10px 15px; + font-weight: 700; + color: #fff; +} + +.menu__link:hover { + color: #fff; +} + +.js .menu--collapse { + position: absolute; + display: block; + max-height: 0; + overflow: hidden; + zoom: 1; +} + +.menu--collapse.opened { + max-height: 9999px; +} + +.opened.menu__list { + border-top: 1px solid #00a0e1; +} + +.menu__item:hover { + background: #00a0e1; +} + +.menu__item--active { + background: #00a0e1; +} + +.menu__item:first-child { + border: none; +} + +@media screen and (min-width: 767px) { + .js .menu { + position: relative; + } + + .js .menu.closed { + max-height: none; + } + + .menu__toggle { + display: none; + } + + .menu { + min-height: 42px; + border-bottom: 5px solid #00a0e1; + } + + .menu__item { + position: relative; + float: left; + } + + .menu__link { + border-left: 1px solid rgba(255, 255, 255, .1); + } +} + +/* Posts/Pages */ +.post__header, +.page-header { + margin-bottom: 20px; + margin-bottom: 1.25rem; +} + +.page-header__title { + font-size: 28px; + font-size: 1.75rem; +} + +.page-content { + margin-bottom: 20px; + margin-bottom: 1.25rem; +} + +.meta { + font-size: 13px; + font-size: .8125rem; + vertical-align: baseline; +} + +.meta, +.meta a { + color: #999; +} + +.meta a:hover { + color: #00a0e1; +} + +.meta .icon { + margin-right: 5px; +} + +.icon-time, +.icon-category { + vertical-align: middle; + fill: #c4c4c4; +} + +.meta-categories__list, +.meta-date, +.meta-lastmod { + vertical-align: middle; +} + +.meta-categories { + margin-left: 15px; +} + +.post__title { + margin: 0; +} + +.post__meta { + padding: 5px 0; + margin-top: 10px; + margin-top: .625rem; + border-top: 1px dotted #ebebeb; + border-bottom: 1px dotted #ebebeb; +} + +.post__thumbnail { + max-width: 1030px; + margin: 0 0 20px; + margin-bottom: 0 0 1.25rem; +} + +.post__thumbnail img { + width: 100%; +} + +.post__content a, +.warning a { + font-weight: 700; + color: #00a0e1; +} + +.post__content a:hover, +.warning a:hover { + color: #00a0e1; + text-decoration: underline; +} + +.post__content .alignnone { + display: block; + margin: 20px 0; + margin: 1.25rem 0; +} + +.post__content .aligncenter { + display: block; + margin: 20px auto; + margin: 1.25rem auto; +} + +.post__content .alignleft { + display: inline; + float: left; + margin: 5px 20px 20px 0; + margin: .3125rem 1.25rem 1.25rem 0; +} + +.post__content .alignright { + display: inline; + float: right; + margin: 5px 0 20px 20px; + margin: .3125rem 0 1.25rem 1.25rem; +} + +.post__content ul { + list-style: square; +} + +.post__content ol { + list-style: decimal; +} + +.post__content ul, +.post__content ol { + margin: 0 0 20px 40px; +} + +.post__content ul ul, +.post__content ol ol { + margin: 0 0 0 40px; +} + +.post__content li { + margin-bottom: 5px; +} + +.tags { + margin-bottom: 20px; + margin-bottom: 1.25rem; + font-size: 12px; + font-size: .75rem; + line-height: 1; + color: #fff; +} + +.tags__list { + list-style: none; +} + +.tags__item { + float: left; + margin: 0 6px 6px 0; + margin: 0 .375rem .375rem 0; + text-transform: uppercase; + background: #2a2a2a; +} + +.tags__item:hover { + background: #00a0e1; +} + +.tags__link, +.tags__link:hover { + display: block; + padding: 10px 15px; +} + +.icon-tag { + float: left; + width: 32px; + height: 32px; + padding: 8px; + margin-right: 6px; + background: #00a0e1; + fill: #fff; +} + +/* Table of Contents */ +.toc { + margin-bottom: 20px; + font-weight: 700; + color: #7a8288; + background: #fff; + border-color: #ebebeb; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 0; + border-left-width: 1px; +} + +.toc__title { + padding: 5px 10px; + color: #fff; + text-transform: uppercase; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + background: #2a2a2a; +} + +.toc__menu ul { + margin: 0; + list-style: none; +} + +.toc__menu ul ul ul a { + padding-left: 25px; +} + +.toc__menu ul ul ul ul a { + padding-left: 45px; +} + +.toc__menu ul ul ul ul ul a { + padding-left: 65px; +} + +.toc__menu ul ul ul ul ul ul a { + padding-left: 85px; +} + +.toc__menu li { + margin: 0; +} + +.toc__menu a { + display: block; + padding: 5px 10px; + color: #00a0e1; + border-bottom: 1px solid #ebebeb; +} + +.toc__menu a:hover { + text-decoration: underline; +} + +/* Author Box */ +.authorbox { + padding: 25px 0; + margin-bottom: 25px; + line-height: 1.5; + border-top: 1px solid #ebebeb; + border-bottom: 1px solid #ebebeb; +} + +.authorbox__avatar { + float: left; + padding: 3px; + margin: 0 25px 0 0; + border: 1px solid #ebebeb; +} + +.authorbox__header { + margin-bottom: 10px; +} + +.authorbox__name { + font-size: 16px; + font-size: 1rem; + font-weight: 700; +} + +/* List content */ +.list__item { + padding-bottom: 20px; + padding-bottom: 1.25rem; + margin-bottom: 20px; + margin-bottom: 1.25rem; + border-bottom: 1px solid #ebebeb; +} + +.list__header { + margin-bottom: 10px; + margin-bottom: .625rem; +} + +.list__meta { + margin-top: 5px; +} + +.list__thumbnail { + float: left; + margin: 0 20px 0 0; +} + +.list__thumbnail img { + width: 100%; + max-width: 235px; +} + +.list__footer-readmore { + float: right; + margin-top: 10px; +} + +/* Pagination */ +.pagination { + margin-top: 20px; +} + +.pagination__item { + display: inline-block; + padding: 10px 15px; + font-weight: 700; + color: #000; + background: #f5f5f5; +} + +.pagination__item:hover, +.pagination__item--current { + color: #fff; + background: #00a0e1; +} + +/* Post Navigation */ +.post-nav { + padding-top: 25px; + padding-bottom: 25px; + margin-bottom: 25px; + border-bottom: 1px solid #ebebeb; +} + +.post-nav__caption { + display: block; + margin-bottom: 5px; + overflow: hidden; + font-weight: 700; + line-height: 1; + text-transform: uppercase; +} + +.post-nav__post-title { + margin-bottom: 0; + overflow: hidden; + font-size: 13px; + font-size: .8125rem; +} + +.post-nav__item--next { + float: right; + text-align: right; +} + +.post-nav__link { + display: block; +} + +/* Images / Video */ +img { + width: auto\9; /* ie8 */ + max-width: 100%; + height: auto; + vertical-align: bottom; +} + +iframe, +embed, +object, +video { + max-width: 100%; +} + +/* Table */ +table { + width: 100%; + margin-bottom: 20px; + margin-bottom: 1.25rem; + border-spacing: 0; + border-collapse: collapse; + border-top: 1px solid #ebebeb; + border-left: 1px solid #ebebeb; +} + +td, +th { + padding: 5px 10px; + border-right: 1px solid #ebebeb; + border-bottom: 1px solid #ebebeb; +} + +th { + font-weight: 700; +} + +/* Forms */ +input { + padding: 5px; + font-size: 12px; + vertical-align: middle; + background: #f5f5f5; + border: 1px solid #ebebeb; + -webkit-transition: all .25s ease-in-out; + -moz-transition: all .25s ease-in-out; + transition: all .25s ease-in-out; +} + +input[type=text], +input[type=email], +input[type=tel], +input[type=url] { + width: 60%; +} + +input[type=text]:hover, +input[type=email]:hover, +input[type=tel]:hover, +input[type=url]:hover, +textarea:hover { + border: 1px solid #00a0e1; +} + +input[type=submit] { + display: inline-block; + min-width: 150px; + padding: 10px 15px; + font-weight: 700; + color: #fff; + text-transform: uppercase; + cursor: pointer; + background: #00a0e1; + border: 0; + -webkit-transition: all .1s linear; + -moz-transition: all .1s linear; + transition: all .1s linear; + -webkit-appearance: none; +} + +input[type=submit]:hover { + background: #2a2a2a; +} + +textarea { + width: 96%; + padding: 5px; + line-height: 1.5; + background: #f5f5f5; + border: 1px solid rgba(0, 0, 0, .1); +} + +/* Widgets */ +.widget { + margin-bottom: 25px; + overflow: hidden; +} + +.widget:last-child { + margin-bottom: 0; +} + +.widget__title { + position: relative; + padding-bottom: 5px; + font-size: 16px; + font-size: 1rem; + text-transform: uppercase; + border-bottom: 3px solid #00a0e1; +} + +.widget__item { + display: block; + padding: 5px 0; + border-bottom: 1px dotted #ebebeb; +} + +.widget__item:first-child { + padding-top: 0; +} + +/* Search widget */ +.widget-search__form { + display: block; + padding: 5%; + margin: 0 auto; + background: #f5f5f5; +} + +.widget-search__form .widget-search__submit { + display: none; +} + +.widget-search__field { + position: relative; + display: block; + width: 90%; + padding: 10px; + margin: 0 auto; + font-size: 11px; + cursor: pointer; + background: #fff; + border: 1px solid #ebebeb; + border-radius: 0; +} + +.widget-search__field:active, +.widget-search__field:focus { + cursor: text; +} + +/* Social widget */ +.widget-social__item { + padding: 0; + border: 0; +} + +.widget-social__link { + display: block; + margin: 0 0 8px; + white-space: normal; +} + +.widget-social__link-icon { + margin: 0 5px 0 0; + vertical-align: middle; +} + +/* Tags Widget */ +.widget-taglist__link { + display: inline-block; + margin: 0 4px 8px 0; + font-size: 12px; + text-transform: uppercase; +} + +/* Events Widget */ +.widget-events__link { + font-weight: 700; +} +.widget-events__link:hover { + color: #00a0e1; +} + + +/* Footer */ +.footer { + padding: 10px 25px; + font-size: 12px; + font-size: .75rem; + color: #999; + background: #2a2a2a; + border-top: 3px solid #999; +} + +.footer__copyright a { + color: #fff; +} + +.footer__copyright a:hover { + text-decoration: underline; +} + +/*** Media Queries ***/ +@media screen and (max-width: 1475px) { + .container { + width: 95%; + } + + .container-inner { + width: 100%; + } +} + +@media screen and (max-width: 900px) { + .container-outer { + margin: 0 auto; + } + + .container { + width: 100%; + } + + .wrapper { + padding: 20px; + } + + .widget { + margin-bottom: 20px; + } + + .footer__copyright { + text-align: center; + } +} + +@media screen and (max-width: 767px) { + .content, + .sidebar, + .body .main { + float: none; + width: 100%; + margin: 0; + } + + .logo { + text-align: center; + } + + .logo__title { + font-size: 24px; + font-size: 1.5rem; + } + + .sidebar { + margin-top: 20px; + } +} + +@media screen and (max-width: 620px) { + input[type=text], + input[type=email], + input[type=tel], + input[type=url] { + width: 88%; + } + + .meta-categories { + display: block; + margin-left: 0; + } + + .authorbox { + text-align: center; + } + + .authorbox__avatar { + display: inline-block; + float: none; + margin: 0 0 20px; + } + + .post-nav__item { + text-align: center; + } + + .post-nav__item--prev { + padding-bottom: 25px; + } + + .post__content ul, + .post__content ol { + margin: 0 0 20px 20px; + } + + .post__content ul ul, + .post__content ol ol { + margin: 0 0 0 20px; + } + + .list__thumbnail { + max-width: 80px; + } + + .list__title { + font-size: 16px; + font-size: 1rem; + } + + .list__meta { + display: block; + font-size: 11px; + font-size: .6875rem; + } +} diff --git a/themes/mainroad/.editorconfig b/themes/mainroad/.editorconfig new file mode 100644 index 0000000..f243208 --- /dev/null +++ b/themes/mainroad/.editorconfig @@ -0,0 +1,19 @@ +# editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = tab +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +[*.html] +insert_final_newline = false + +[*.md] +trim_trailing_whitespace = false + +[*.{json,yml,toml,md,babelrc,eslintrc,stylelintrc}] +indent_style = space +indent_size = 2 diff --git a/themes/mainroad/.gitignore b/themes/mainroad/.gitignore new file mode 100644 index 0000000..d171f95 --- /dev/null +++ b/themes/mainroad/.gitignore @@ -0,0 +1,19 @@ +# NPM +node_modules/ +npm-debug.log + +# IDE +.idea +*.sublime-project +*.sublime-workspace +.vscode/* + +# OS +._* +Thumbs.db +.DS_Store +.Trashes +.Spotlight-V100 +.AppleDouble +.LSOverride +Desktop.ini diff --git a/themes/mainroad/.stylelintrc b/themes/mainroad/.stylelintrc new file mode 100644 index 0000000..cdb345e --- /dev/null +++ b/themes/mainroad/.stylelintrc @@ -0,0 +1,317 @@ +{ + "plugins": [ + "stylelint-order" + ], + "rules": { + "at-rule-empty-line-before": [ + "always", + { + "except": [ + "blockless-after-same-name-blockless", + "first-nested" + ], + "ignore": [ + "after-comment" + ] + } + ], + "at-rule-name-case": "lower", + "at-rule-name-space-after": "always-single-line", + "at-rule-semicolon-newline-after": "always", + "block-closing-brace-newline-after": "always", + "block-closing-brace-empty-line-before": "never", + "block-no-empty": true, + "block-opening-brace-newline-after": "always-multi-line", + "color-hex-case": "lower", + "color-hex-length": "short", + "color-no-invalid-hex": true, + "comment-no-empty": true, + "declaration-bang-space-after": "never", + "declaration-bang-space-before": "always", + "declaration-block-no-duplicate-properties": [ + true, + { + "ignore": [ + "consecutive-duplicates-with-different-values" + ] + } + ], + "declaration-block-no-shorthand-property-overrides": true, + "declaration-block-semicolon-newline-after": "always-multi-line", + "declaration-block-semicolon-space-after": "always-single-line", + "declaration-block-semicolon-space-before": "never", + "declaration-block-single-line-max-declarations": 1, + "declaration-block-trailing-semicolon": "always", + "declaration-colon-newline-after": "always-multi-line", + "declaration-colon-space-after": "always-single-line", + "declaration-colon-space-before": "never", + "font-family-no-duplicate-names": true, + "function-calc-no-unspaced-operator": true, + "function-comma-newline-after": "always-multi-line", + "function-comma-space-after": "always-single-line", + "function-comma-space-before": "never", + "function-linear-gradient-no-nonstandard-direction": true, + "function-max-empty-lines": 0, + "function-name-case": "lower", + "function-parentheses-newline-inside": "always-multi-line", + "function-parentheses-space-inside": "never-single-line", + "function-whitespace-after": "always", + "indentation": "tab", + "keyframe-declaration-no-important": true, + "length-zero-no-unit": true, + "max-empty-lines": 1, + "media-feature-colon-space-after": "always", + "media-feature-colon-space-before": "never", + "media-feature-name-case": "lower", + "media-feature-name-no-unknown": true, + "media-feature-parentheses-space-inside": "never", + "media-feature-range-operator-space-after": "always", + "media-feature-range-operator-space-before": "always", + "media-query-list-comma-newline-after": "always-multi-line", + "media-query-list-comma-space-after": "always-single-line", + "media-query-list-comma-space-before": "never", + "no-empty-source": true, + "no-eol-whitespace": true, + "no-extra-semicolons": true, + "no-invalid-double-slash-comments": true, + "no-missing-end-of-source-newline": true, + "number-no-trailing-zeros": true, + "property-case": "lower", + "property-no-unknown": true, + "selector-attribute-brackets-space-inside": "never", + "selector-attribute-operator-space-after": "never", + "selector-attribute-operator-space-before": "never", + "selector-combinator-space-after": "always", + "selector-combinator-space-before": "always", + "selector-descendant-combinator-no-non-space": true, + "selector-list-comma-newline-after": "always", + "selector-list-comma-space-before": "never", + "selector-pseudo-class-case": "lower", + "selector-pseudo-class-no-unknown": true, + "selector-pseudo-class-parentheses-space-inside": "never", + "selector-pseudo-element-case": "lower", + "selector-pseudo-element-colon-notation": "double", + "selector-pseudo-element-no-unknown": true, + "selector-type-case": "lower", + "selector-type-no-unknown": true, + "shorthand-property-no-redundant-values": true, + "string-no-newline": true, + "unit-case": "lower", + "unit-no-unknown": true, + "value-list-comma-newline-after": "always-multi-line", + "value-list-comma-space-after": "always-single-line", + "value-list-comma-space-before": "never", + "value-list-max-empty-lines": 0, + "order/properties-order": [ + "position", + "top", + "right", + "bottom", + "left", + "z-index", + "box-sizing", + "display", + "flex", + "flex-align", + "flex-basis", + "flex-direction", + "flex-wrap", + "flex-flow", + "flex-shrink", + "flex-grow", + "flex-order", + "flex-pack", + "align-content", + "align-items", + "align-self", + "justify-content", + "order", + "float", + "width", + "min-width", + "max-width", + "height", + "min-height", + "max-height", + "padding", + "padding-top", + "padding-right", + "padding-bottom", + "padding-left", + "margin", + "margin-top", + "margin-right", + "margin-bottom", + "margin-left", + "overflow", + "overflow-x", + "overflow-y", + "-webkit-overflow-scrolling", + "-ms-overflow-x", + "-ms-overflow-y", + "-ms-overflow-style", + "columns", + "column-count", + "column-fill", + "column-gap", + "column-rule", + "column-rule-width", + "column-rule-style", + "column-rule-color", + "column-span", + "column-width", + "orphans", + "widows", + "clip", + "clear", + "font", + "font-family", + "font-size", + "font-style", + "font-weight", + "font-variant", + "font-size-adjust", + "font-stretch", + "font-effect", + "font-emphasize", + "font-emphasize-position", + "font-emphasize-style", + "font-smooth", + "src", + "hyphens", + "line-height", + "color", + "text-align", + "text-align-last", + "text-emphasis", + "text-emphasis-color", + "text-emphasis-style", + "text-emphasis-position", + "text-decoration", + "text-indent", + "text-justify", + "text-outline", + "-ms-text-overflow", + "text-overflow", + "text-overflow-ellipsis", + "text-overflow-mode", + "text-shadow", + "text-transform", + "text-wrap", + "-webkit-text-size-adjust", + "-ms-text-size-adjust", + "letter-spacing", + "-ms-word-break", + "word-break", + "word-spacing", + "-ms-word-wrap", + "word-wrap", + "overflow-wrap", + "tab-size", + "white-space", + "vertical-align", + "direction", + "unicode-bidi", + "list-style", + "list-style-position", + "list-style-type", + "list-style-image", + "pointer-events", + "-ms-touch-action", + "touch-action", + "cursor", + "visibility", + "zoom", + "table-layout", + "empty-cells", + "caption-side", + "border-spacing", + "border-collapse", + "content", + "quotes", + "counter-reset", + "counter-increment", + "resize", + "user-select", + "nav-index", + "nav-up", + "nav-right", + "nav-down", + "nav-left", + "background", + "background-color", + "background-image", + "filter", + "background-repeat", + "background-attachment", + "background-position", + "background-position-x", + "background-position-y", + "background-clip", + "background-origin", + "background-size", + "border", + "border-color", + "border-style", + "border-width", + "border-top", + "border-top-color", + "border-top-style", + "border-top-width", + "border-right", + "border-right-color", + "border-right-style", + "border-right-width", + "border-bottom", + "border-bottom-color", + "border-bottom-style", + "border-bottom-width", + "border-left", + "border-left-color", + "border-left-style", + "border-left-width", + "border-radius", + "border-top-left-radius", + "border-top-right-radius", + "border-bottom-right-radius", + "border-bottom-left-radius", + "border-image", + "border-image-source", + "border-image-slice", + "border-image-width", + "border-image-outset", + "border-image-repeat", + "outline", + "outline-width", + "outline-style", + "outline-color", + "outline-offset", + "box-shadow", + "opacity", + "-ms-interpolation-mode", + "page-break-after", + "page-break-before", + "page-break-inside", + "transition", + "transition-delay", + "transition-timing-function", + "transition-duration", + "transition-property", + "transform", + "transform-origin", + "perspective", + "appearance", + "animation", + "animation-name", + "animation-duration", + "animation-play-state", + "animation-timing-function", + "animation-delay", + "animation-iteration-count", + "animation-direction", + "animation-fill-mode", + "fill", + "stroke" + ] + } +} diff --git a/themes/mainroad/LICENSE.md b/themes/mainroad/LICENSE.md new file mode 100644 index 0000000..af5153d --- /dev/null +++ b/themes/mainroad/LICENSE.md @@ -0,0 +1,361 @@ +### GNU GENERAL PUBLIC LICENSE + +Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +### Preamble + +The licenses for most software are designed to take away your freedom +to share and change it. By contrast, the GNU General Public License is +intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + +We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, +we want its recipients to know that what they have is not the +original, so that any problems introduced by others will not reflect +on the original authors' reputations. + +Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at +all. + +The precise terms and conditions for copying, distribution and +modification follow. + +### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +**0.** This License applies to any program or other work which +contains a notice placed by the copyright holder saying it may be +distributed under the terms of this General Public License. The +"Program", below, refers to any such program or work, and a "work +based on the Program" means either the Program or any derivative work +under copyright law: that is to say, a work containing the Program or +a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is +included without limitation in the term "modification".) Each licensee +is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the Program +(independent of having been made by running the Program). Whether that +is true depends on what the Program does. + +**1.** You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a +fee. + +**2.** You may modify your copy or copies of the Program or any +portion of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + +**a)** You must cause the modified files to carry prominent notices +stating that you changed the files and the date of any change. + + +**b)** You must cause any work that you distribute or publish, that in +whole or in part contains or is derived from the Program or any part +thereof, to be licensed as a whole at no charge to all third parties +under the terms of this License. + + +**c)** If the modified program normally reads commands interactively +when run, you must cause it, when started running for such interactive +use in the most ordinary way, to print or display an announcement +including an appropriate copyright notice and a notice that there is +no warranty (or else, saying that you provide a warranty) and that +users may redistribute the program under these conditions, and telling +the user how to view a copy of this License. (Exception: if the +Program itself is interactive but does not normally print such an +announcement, your work based on the Program is not required to print +an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + +**3.** You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + +**a)** Accompany it with the complete corresponding machine-readable +source code, which must be distributed under the terms of Sections 1 +and 2 above on a medium customarily used for software interchange; or, + + +**b)** Accompany it with a written offer, valid for at least three +years, to give any third party, for a charge no more than your cost of +physically performing source distribution, a complete machine-readable +copy of the corresponding source code, to be distributed under the +terms of Sections 1 and 2 above on a medium customarily used for +software interchange; or, + + +**c)** Accompany it with the information you received as to the offer +to distribute corresponding source code. (This alternative is allowed +only for noncommercial distribution and only if you received the +program in object code or executable form with such an offer, in +accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + +**4.** You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt otherwise +to copy, modify, sublicense or distribute the Program is void, and +will automatically terminate your rights under this License. However, +parties who have received copies, or rights, from you under this +License will not have their licenses terminated so long as such +parties remain in full compliance. + +**5.** You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +**6.** Each time you redistribute the Program (or any work based on +the Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + +**7.** If, as a consequence of a court judgment or allegation of +patent infringement or for any other reason (not limited to patent +issues), conditions are imposed on you (whether by court order, +agreement or otherwise) that contradict the conditions of this +License, they do not excuse you from the conditions of this License. +If you cannot distribute so as to satisfy simultaneously your +obligations under this License and any other pertinent obligations, +then as a consequence you may not distribute the Program at all. For +example, if a patent license would not permit royalty-free +redistribution of the Program by all those who receive copies directly +or indirectly through you, then the only way you could satisfy both it +and this License would be to refrain entirely from distribution of the +Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + +**8.** If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + +**9.** The Free Software Foundation may publish revised and/or new +versions of the General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Program does not specify a +version number of this License, you may choose any version ever +published by the Free Software Foundation. + +**10.** If you wish to incorporate parts of the Program into other +free programs whose distribution conditions are different, write to +the author to ask for permission. For software which is copyrighted by +the Free Software Foundation, write to the Free Software Foundation; +we sometimes make exceptions for this. Our decision will be guided by +the two goals of preserving the free status of all derivatives of our +free software and of promoting the sharing and reuse of software +generally. + +**NO WARRANTY** + +**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +### END OF TERMS AND CONDITIONS + +### How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these +terms. + +To do so, attach the following notices to the program. It is safest to +attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + one line to give the program's name and an idea of what it does. + Copyright (C) yyyy name of author + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +Also add information on how to contact you by electronic and paper +mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details + type `show w'. This is free software, and you are welcome + to redistribute it under certain conditions; type `show c' + for details. + +The hypothetical commands \`show w' and \`show c' should show the +appropriate parts of the General Public License. Of course, the +commands you use may be called something other than \`show w' and +\`show c'; they could even be mouse-clicks or menu items--whatever +suits your program. + +You should also get your employer (if you work as a programmer) or +your school, if any, to sign a "copyright disclaimer" for the program, +if necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright + interest in the program `Gnomovision' + (which makes passes at compilers) written + by James Hacker. + + signature of Ty Coon, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, +you may consider it more useful to permit linking proprietary +applications with the library. If this is what you want to do, use the +[GNU Lesser General Public +License](http://www.gnu.org/licenses/lgpl.html) instead of this +License. \ No newline at end of file diff --git a/themes/mainroad/README.md b/themes/mainroad/README.md new file mode 100644 index 0000000..0623035 --- /dev/null +++ b/themes/mainroad/README.md @@ -0,0 +1,122 @@ +# Mainroad + +**Mainroad** is a responsive, simple, clean and content-focused [Hugo](https://gohugo.io/) theme based on the [MH Magazine lite](https://wordpress.org/themes/mh-magazine-lite/) WordPress theme by [MH Themes](https://www.mhthemes.com/). + +**[Demo (Best)](https://hugothemes.gitlab.io/mainroad/)** | [Standart Demo](https://themes.gohugo.io/theme/mainroad/) + +![screenshot](https://github.com/Vimux/mainroad/blob/master/images/screenshot.png) + +**Features:** + ++ Hugo internal templates (Open Graph, Twitter Cards, Disqus, Google Analytics) ++ Responsive menu ++ SVG icons ++ Theme options (Sidebar position, Author Box, Post Navigation) available through config.toml file parameters ++ Table of Contents ++ MathJax + +**Browser support:** + ++ **Desktop:** IE10+, Chrome, Firefox, Safari ++ **Mobile:** Android browser (on Android 4.4+), Safari (on iOS 7+), Google Chrome, Opera mini + +Other browsers (like Opera on Blink engine) are also supported, but not tested. Support for older versions of Internet Explorer (IE9 and below) ended. + +## Installation + +In your Hugo site `themes` directory, run: + +``` +$ git clone https://github.com/vimux/mainroad +``` + +Next, open `config.toml` in the base of the Hugo site and ensure the theme option is set to `mainroad`: + +``` +theme = "mainroad" +``` + +For more information read the official [setup guide](https://gohugo.io/themes/installing-and-using-themes/) of Hugo. + +## Configuration + +### Config.toml example + +```toml +baseurl = "/" +title = "Mainroad" +languageCode = "en-us" +paginate = "10" # Number of posts per page +theme = "mainroad" +disqusShortname = "" # Enable comments by entering your Disqus shortname +googleAnalytics = "" # Enable Google Analytics by entering your tracking id + +[Author] # Used in authorbox + name = "John Doe" + bio = "John Doe's true identity is unknown. Maybe he is a successful blogger or writer. Nobody knows it." + avatar = "img/avatar.png" + +[Params] + subtitle = "Just another site" # Subtitle of your site. Used in site header + description = " John Doe's Personal blog about everything" # Site description. Used in meta description + opengraph = true # Enable OpenGraph if true + twitter_cards = true # Enable Twitter Cards if true + readmore = false # Show "Read more" button in list if true + leftsidebar = false # Move sidebar to the left side if true + authorbox = true # Show authorbox at bottom of pages if true + toc = true # Enable Table of Contents + post_navigation = true # Show post navigation at bottom of pages if true + postSections = ["post"] # the section pages to show on home page and the "Recent articles" widget + #postSections = ["blog", "news"] # alternative that shows more than one section's pages + #dateformat = "2006-01-02" # change the format of dates + #mathjax: true # Enable MathJax + #mathjaxPath: "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js" # Specify MathJax path + #mathjaxConfig: "TeX-AMS-MML_HTMLorMML" # Specify MathJax config + +[Params.widgets] + search = true # Enable "Search" widget + recent_articles = true # Enable "Recent articles" widget + recent_articles_num = 5 # Set the number of articles in the "Recent articles" widget + categories = true # Enable "Categories" widget + tags = true # Enable "Tags" widget + tags_counter = false # Enable counter for each tag in "Tags" widget (disabled by default) + + # Enable "Social" widget, if any of "social_*" set a value + social_facebook = "username" + social_twitter = "username" + social_linkedin = "username" + social_github = "username" + social_email = "example@example.com" + social_google_plus = "profileid" +``` + +### Front Matter example + +```yaml +--- +title: "Example article title" +date: "2017-08-21" +description: "Example article description" +thumbnail: "img/placeholder.jpg" # Optional, thumbnail +disable_comments: false # Optional, disable Disqus comments if true +authorbox: true # Optional, enable authorbox for specific post +toc: true # Optional, enable Table of Contents for specific post +mathjax: true # Optional, enable MathJax for specific post +categories: + - "Category 1" + - "Category 2" +tags: + - "Test" + - "Another test" +--- +``` + +For more information about front matter variables read [Hugo Front Matter](https://gohugo.io/themes/installing-and-using-themes/) from Hugo official documentation. + +## Contributing + +Have you found a bug or got an idea for a new feature? Feel free to use the [issue tracker](https://github.com/Vimux/mainroad/issues) to let me know. Or make directly a [pull request](https://github.com/Vimux/mainroad/pulls), but please respect the following [contributing guide](https://github.com/Vimux/Mainroad/wiki/Contributing). + +## License + +This theme is released under the [GPLv2 license](https://github.com/Vimux/mainroad/blob/master/LICENSE.md). diff --git a/themes/mainroad/archetypes/default.md b/themes/mainroad/archetypes/default.md new file mode 100644 index 0000000..b2c51de --- /dev/null +++ b/themes/mainroad/archetypes/default.md @@ -0,0 +1,10 @@ +--- +title: "{{ replace .TranslationBaseName '-' ' ' | title }}" +description: "" +date: "{{ .Date }}" +thumbnail: "" +categories: + - "" +tags: + - "" +--- diff --git a/themes/mainroad/exampleSite/.gitignore b/themes/mainroad/exampleSite/.gitignore new file mode 100644 index 0000000..de19fe8 --- /dev/null +++ b/themes/mainroad/exampleSite/.gitignore @@ -0,0 +1,2 @@ +public/ +themes \ No newline at end of file diff --git a/themes/mainroad/exampleSite/config.toml b/themes/mainroad/exampleSite/config.toml new file mode 100644 index 0000000..442df16 --- /dev/null +++ b/themes/mainroad/exampleSite/config.toml @@ -0,0 +1,32 @@ +baseurl = "/" +title = "Mainroad" +languageCode = "en-us" +paginate = "10" # Number of posts per page +theme = "mainroad" +disqusShortname = "" # Enable comments by entering your Disqus shortname +googleAnalytics = "" # Enable Google Analytics by entering your tracking id + +[Author] + name = "John Doe" + bio = "John Doe's true identity is unknown. Maybe he is a successful blogger or writer. Nobody knows it." + avatar = "img/avatar.png" + + +[Params] + subtitle = "Just another site" # Subtitle of your site + description = " John Doe's Personal blog about everything" # Description of your site + opengraph = true + twitter_cards = false + readmore = false # Show "Read more" button in list if true + leftsidebar = false # Move sidebar to the left side if true + authorbox = true + post_navigation = true + postSections = ["post"] + + +[Params.widgets] + search = true # Enable "Search" widget + recent_articles = true # Enable "Recent arcticles" widget + categories = true # Enable "Categories" widget + tags = true # Enable "Tags" widget + tags_counter = false # Enable counter for each tag in "Tags" widget (disabled by default) \ No newline at end of file diff --git a/themes/mainroad/exampleSite/content/about.md b/themes/mainroad/exampleSite/content/about.md new file mode 100644 index 0000000..cd7c1ed --- /dev/null +++ b/themes/mainroad/exampleSite/content/about.md @@ -0,0 +1,30 @@ +--- +title: About Hugo +date: 2014-04-09 +menu: main +--- + +Hugo is a static site engine written in Go. + + +It makes use of a variety of open source projects including: + +* [Cobra](https://github.com/spf13/cobra) +* [Viper](https://github.com/spf13/viper) +* [J Walter Weatherman](https://github.com/spf13/jWalterWeatherman) +* [Cast](https://github.com/spf13/cast) + +Learn more and contribute on [GitHub](https://github.com/spf13). + +## Setup + +Some fun facts about [Hugo](http://gohugo.io/): + +* Built in [Go](http://golang.org/) +* Loosely inspired by [Jekyll](http://jekyllrb.com/) +* Primarily developed by [spf13](http://spf13.com/) on the train while commuting to and from Manhattan. +* Coded in [Vim](http://vim.org) using [spf13-vim](http://vim.spf13.com/) + +Have questions or suggestions? Feel free to [open an issue on GitHub](https://github.com/spf13/hugo/issues/new) or [ask me on Twitter](https://twitter.com/spf13). + +Thanks for reading! diff --git a/themes/mainroad/exampleSite/content/post/basic-elements.md b/themes/mainroad/exampleSite/content/post/basic-elements.md new file mode 100644 index 0000000..156adf8 --- /dev/null +++ b/themes/mainroad/exampleSite/content/post/basic-elements.md @@ -0,0 +1,166 @@ +--- +title: Basic HTML Elements +description: Example test article that contains basic HTML elements for text formatting on the Web. +date: 2018-04-16 +categories: + - "Development" +tags: + - "HTML" + - "CSS" + - "Basic Elements" +--- + +The main purpose of this article is to make sure that all basic HTML Elements are decorated with CSS so as to not miss any possible elements when creating new themes for Hugo. + + +## Headings + +Let's start with all possible headings. The HTML `

`—`

` elements represent six levels of section headings. `

` is the highest section level and `

` is the lowest. + +# Heading 1 +## Heading 2 +### Heading 3 +#### Heading 4 +##### Heading 5 +###### Heading 6 + +*** + +## Paragraph + +According to the [HTML5 specification](https://www.w3.org/TR/html5/dom.html#elements) by [W3C](https://www.w3.org/), **HTML documents consist of a tree of elements and text**. Each element is denoted in the source by a [start tag](https://www.w3.org/TR/html5/syntax.html#syntax-start-tags), such as ``, and an [end tag](https://www.w3.org/TR/html5/syntax.html#syntax-end-tags), such as ``. (*Certain start tags and end tags can in certain cases be omitted and are implied by other tags.*) + +Elements can have attributes, which control how the elements work. For example, hyperlink are formed using the `a` element and its `href` attribute. + +## List Types + +### Ordered List + +1. First item +2. Second item +3. Third item + +### Unordered List + +* List item +* Another item +* And another item + +### Nested list + +
    +
  • First item
  • +
  • Second item +
      +
    • Second item First subitem
    • +
    • Second item second subitem +
        +
      • Second item Second subitem First sub-subitem
      • +
      • Second item Second subitem Second sub-subitem
      • +
      • Second item Second subitem Third sub-subitem
      • +
      +
    • +
    • Second item Third subitem +
        +
      1. Second item Third subitem First sub-subitem
      2. +
      3. Second item Third subitem Second sub-subitem
      4. +
      5. Second item Third subitem Third sub-subitem
      6. +
      +
    +
  • +
  • Third item
  • +
+ +### Definition List + +HTML also supports definition lists. + +
+
Blanco tequila
+
The purest form of the blue agave spirit...
+
Reposado tequila
+
Typically aged in wooden barrels for between two and eleven months...
+
+ +## Blockquotes + +The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations. + +> Quoted text. +> This line is part of the same quote. +> Also you can *put* **Markdown** into a blockquote. + +Blockquote with a citation. + +
+

My goal wasn't to make a ton of money. It was to build good computers. I only started the company when I realized I could be an engineer forever.

+
Steve Wozniak
+
+ +According to Mozilla's website, Firefox 1.0 was released in 2004 and became a big success. + +## Tables + +Tables aren't part of the core Markdown spec, but Hugo supports them. + +| ID | Make | Model | Year | +| --- | --------- | ------- | ---- | +| 1 | Honda | Accord | 2009 | +| 2 | Toyota | Camry | 2012 | +| 3 | Hyundai | Elantra | 2010 | + +Colons can be used to align columns. + +| Tables | Are | Cool | +|:----------- |:-------------:| ------------:| +| align: left | align: center | align: right | +| align: left | align: center | align: right | +| align: left | align: center | align: right | + +You can also use inline Markdown. + +| Inline | Markdown | In | Table | +| ---------- | --------- | ----------------- | ---------- | +| *italics* | **bold** | ~~strikethrough~~ | `code` | + +## Code + +```html + + + + + Example HTML5 Document + + +

Test

+ + +``` + +{{< highlight html >}} + + + + + Example HTML5 Document + + +

Test

+ + +{{< /highlight >}} + +## Other stuff — abbr, sub, sup, kbd, etc. + +GIF is a bitmap image format. + +H2O + +C6H12O6 + +Xn + Yn = Zn + +Press X to win. Or press CTRL+ALT+F to show FPS counter. + +As a unit of information in information theory, the bit has alternatively been called a shannon, named after Claude Shannon, the founder of field of information theory. diff --git a/themes/mainroad/exampleSite/content/post/creating-a-new-theme.md b/themes/mainroad/exampleSite/content/post/creating-a-new-theme.md new file mode 100644 index 0000000..2da9eaa --- /dev/null +++ b/themes/mainroad/exampleSite/content/post/creating-a-new-theme.md @@ -0,0 +1,1143 @@ +--- +title: Creating a New Theme +date: 2014-09-28 +author: Michael Henderson +--- + + +## Introduction + +This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I'll explain how Hugo uses templates and how you can organize your templates to create a theme. I won't cover using CSS to style your theme. + +We'll start with creating a new site with a very basic template. Then we'll add in a few pages and posts. With small variations on that, you will be able to create many different types of web sites. + +In this tutorial, commands that you enter will start with the "$" prompt. The output will follow. Lines that start with "#" are comments that I've added to explain a point. When I show updates to a file, the ":wq" on the last line means to save the file. + +Here's an example: + +``` +## this is a comment +$ echo this is a command +this is a command + +## edit the file +$vi foo.md ++++ +date = "2014-09-28" +title = "creating a new theme" ++++ + +bah and humbug +:wq + +## show it +$ cat foo.md ++++ +date = "2014-09-28" +title = "creating a new theme" ++++ + +bah and humbug +$ +``` + + +## Some Definitions + +There are a few concepts that you need to understand before creating a theme. + +### Skins + +Skins are the files responsible for the look and feel of your site. It’s the CSS that controls colors and fonts, it’s the Javascript that determines actions and reactions. It’s also the rules that Hugo uses to transform your content into the HTML that the site will serve to visitors. + +You have two ways to create a skin. The simplest way is to create it in the ```layouts/``` directory. If you do, then you don’t have to worry about configuring Hugo to recognize it. The first place that Hugo will look for rules and files is in the ```layouts/``` directory so it will always find the skin. + +Your second choice is to create it in a sub-directory of the ```themes/``` directory. If you do, then you must always tell Hugo where to search for the skin. It’s extra work, though, so why bother with it? + +The difference between creating a skin in ```layouts/``` and creating it in ```themes/``` is very subtle. A skin in ```layouts/``` can’t be customized without updating the templates and static files that it is built from. A skin created in ```themes/```, on the other hand, can be and that makes it easier for other people to use it. + +The rest of this tutorial will call a skin created in the ```themes/``` directory a theme. + +Note that you can use this tutorial to create a skin in the ```layouts/``` directory if you wish to. The main difference will be that you won’t need to update the site’s configuration file to use a theme. + +### The Home Page + +The home page, or landing page, is the first page that many visitors to a site see. It is the index.html file in the root directory of the web site. Since Hugo writes files to the public/ directory, our home page is public/index.html. + +### Site Configuration File + +When Hugo runs, it looks for a configuration file that contains settings that override default values for the entire site. The file can use TOML, YAML, or JSON. I prefer to use TOML for my configuration files. If you prefer to use JSON or YAML, you’ll need to translate my examples. You’ll also need to change the name of the file since Hugo uses the extension to determine how to process it. + +Hugo translates Markdown files into HTML. By default, Hugo expects to find Markdown files in your ```content/``` directory and template files in your ```themes/``` directory. It will create HTML files in your ```public/``` directory. You can change this by specifying alternate locations in the configuration file. + +### Content + +Content is stored in text files that contain two sections. The first section is the “front matter,” which is the meta-information on the content. The second section contains Markdown that will be converted to HTML. + +#### Front Matter + +The front matter is information about the content. Like the configuration file, it can be written in TOML, YAML, or JSON. Unlike the configuration file, Hugo doesn’t use the file’s extension to know the format. It looks for markers to signal the type. TOML is surrounded by “`+++`”, YAML by “`---`”, and JSON is enclosed in curly braces. I prefer to use TOML, so you’ll need to translate my examples if you prefer YAML or JSON. + +The information in the front matter is passed into the template before the content is rendered into HTML. + +#### Markdown + +Content is written in Markdown which makes it easier to create the content. Hugo runs the content through a Markdown engine to create the HTML which will be written to the output file. + +### Template Files + +Hugo uses template files to render content into HTML. Template files are a bridge between the content and presentation. Rules in the template define what content is published, where it's published to, and how it will rendered to the HTML file. The template guides the presentation by specifying the style to use. + +There are three types of templates: single, list, and partial. Each type takes a bit of content as input and transforms it based on the commands in the template. + +Hugo uses its knowledge of the content to find the template file used to render the content. If it can’t find a template that is an exact match for the content, it will shift up a level and search from there. It will continue to do so until it finds a matching template or runs out of templates to try. If it can’t find a template, it will use the default template for the site. + +Please note that you can use the front matter to influence Hugo’s choice of templates. + +#### Single Template + +A single template is used to render a single piece of content. For example, an article or post would be a single piece of content and use a single template. + +#### List Template + +A list template renders a group of related content. That could be a summary of recent postings or all articles in a category. List templates can contain multiple groups. + +The homepage template is a special type of list template. Hugo assumes that the home page of your site will act as the portal for the rest of the content in the site. + +#### Partial Template + +A partial template is a template that can be included in other templates. Partial templates must be called using the “partial” template command. They are very handy for rolling up common behavior. For example, your site may have a banner that all pages use. Instead of copying the text of the banner into every single and list template, you could create a partial with the banner in it. That way if you decide to change the banner, you only have to change the partial template. + +## Create a New Site + +Let's use Hugo to create a new web site. I'm a Mac user, so I'll create mine in my home directory, in the Sites folder. If you're using Linux, you might have to create the folder first. + +The "new site" command will create a skeleton of a site. It will give you the basic directory structure and a useable configuration file. + +``` +$ hugo new site ~/Sites/zafta +$ cd ~/Sites/zafta +$ ls -l +total 8 +drwxr-xr-x 7 quoha staff 238 Sep 29 16:49 . +drwxr-xr-x 3 quoha staff 102 Sep 29 16:49 .. +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 archetypes +-rw-r--r-- 1 quoha staff 82 Sep 29 16:49 config.toml +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 content +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 layouts +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 static +$ +``` + +Take a look in the content/ directory to confirm that it is empty. + +The other directories (archetypes/, layouts/, and static/) are used when customizing a theme. That's a topic for a different tutorial, so please ignore them for now. + +### Generate the HTML For the New Site + +Running the `hugo` command with no options will read all the available content and generate the HTML files. It will also copy all static files (that's everything that's not content). Since we have an empty site, it won't do much, but it will do it very quickly. + +``` +$ hugo --verbose +INFO: 2014/09/29 Using config file: config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html] +WARN: 2014/09/29 Unable to locate layout: [404.html] +0 draft content +0 future content +0 pages created +0 tags created +0 categories created +in 2 ms +$ +``` + +The "`--verbose`" flag gives extra information that will be helpful when we build the template. Every line of the output that starts with "INFO:" or "WARN:" is present because we used that flag. The lines that start with "WARN:" are warning messages. We'll go over them later. + +We can verify that the command worked by looking at the directory again. + +``` +$ ls -l +total 8 +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 archetypes +-rw-r--r-- 1 quoha staff 82 Sep 29 16:49 config.toml +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 content +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 layouts +drwxr-xr-x 4 quoha staff 136 Sep 29 17:02 public +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 static +$ +``` + +See that new public/ directory? Hugo placed all generated content there. When you're ready to publish your web site, that's the place to start. For now, though, let's just confirm that we have what we'd expect from a site with no content. + +``` +$ ls -l public +total 16 +-rw-r--r-- 1 quoha staff 416 Sep 29 17:02 index.xml +-rw-r--r-- 1 quoha staff 262 Sep 29 17:02 sitemap.xml +$ +``` + +Hugo created two XML files, which is standard, but there are no HTML files. + + + +### Test the New Site + +Verify that you can run the built-in web server. It will dramatically shorten your development cycle if you do. Start it by running the "server" command. If it is successful, you will see output similar to the following: + +``` +$ hugo server --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html] +WARN: 2014/09/29 Unable to locate layout: [404.html] +0 draft content +0 future content +0 pages created +0 tags created +0 categories created +in 2 ms +Serving pages from /Users/quoha/Sites/zafta/public +Web Server is available at http://localhost:1313 +Press Ctrl+C to stop +``` + +Connect to the listed URL (it's on the line that starts with "Web Server"). If everything is working correctly, you should get a page that shows the following: + +``` +index.xml +sitemap.xml +``` + +That's a listing of your public/ directory. Hugo didn't create a home page because our site has no content. When there's no index.html file in a directory, the server lists the files in the directory, which is what you should see in your browser. + +Let’s go back and look at those warnings again. + +``` +WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html] +WARN: 2014/09/29 Unable to locate layout: [404.html] +``` + +That second warning is easier to explain. We haven’t created a template to be used to generate “page not found errors.” The 404 message is a topic for a separate tutorial. + +Now for the first warning. It is for the home page. You can tell because the first layout that it looked for was “index.html.” That’s only used by the home page. + +I like that the verbose flag causes Hugo to list the files that it's searching for. For the home page, they are index.html, _default/list.html, and _default/single.html. There are some rules that we'll cover later that explain the names and paths. For now, just remember that Hugo couldn't find a template for the home page and it told you so. + +At this point, you've got a working installation and site that we can build upon. All that’s left is to add some content and a theme to display it. + +## Create a New Theme + +Hugo doesn't ship with a default theme. There are a few available (I counted a dozen when I first installed Hugo) and Hugo comes with a command to create new themes. + +We're going to create a new theme called "zafta." Since the goal of this tutorial is to show you how to fill out the files to pull in your content, the theme will not contain any CSS. In other words, ugly but functional. + +All themes have opinions on content and layout. For example, Zafta uses "post" over "blog". Strong opinions make for simpler templates but differing opinions make it tougher to use themes. When you build a theme, consider using the terms that other themes do. + + +### Create a Skeleton + +Use the hugo "new" command to create the skeleton of a theme. This creates the directory structure and places empty files for you to fill out. + +``` +$ hugo new theme zafta + +$ ls -l +total 8 +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 archetypes +-rw-r--r-- 1 quoha staff 82 Sep 29 16:49 config.toml +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 content +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 layouts +drwxr-xr-x 4 quoha staff 136 Sep 29 17:02 public +drwxr-xr-x 2 quoha staff 68 Sep 29 16:49 static +drwxr-xr-x 3 quoha staff 102 Sep 29 17:31 themes + +$ find themes -type f | xargs ls -l +-rw-r--r-- 1 quoha staff 1081 Sep 29 17:31 themes/zafta/LICENSE.md +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/archetypes/default.md +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/_default/list.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/_default/single.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/partials/footer.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/partials/header.html +-rw-r--r-- 1 quoha staff 93 Sep 29 17:31 themes/zafta/theme.toml +$ +``` + +The skeleton includes templates (the files ending in .html), license file, a description of your theme (the theme.toml file), and an empty archetype. + +Please take a minute to fill out the theme.toml and LICENSE.md files. They're optional, but if you're going to be distributing your theme, it tells the world who to praise (or blame). It's also nice to declare the license so that people will know how they can use the theme. + +``` +$ vi themes/zafta/theme.toml +author = "michael d henderson" +description = "a minimal working template" +license = "MIT" +name = "zafta" +source_repo = "" +tags = ["tags", "categories"] +:wq + +## also edit themes/zafta/LICENSE.md and change +## the bit that says "YOUR_NAME_HERE" +``` + +Note that the the skeleton's template files are empty. Don't worry, we'll be changing that shortly. + +``` +$ find themes/zafta -name '*.html' | xargs ls -l +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/_default/list.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/_default/single.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/partials/footer.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/partials/header.html +$ +``` + + + +### Update the Configuration File to Use the Theme + +Now that we've got a theme to work with, it's a good idea to add the theme name to the configuration file. This is optional, because you can always add "-t zafta" on all your commands. I like to put it the configuration file because I like shorter command lines. If you don't put it in the configuration file or specify it on the command line, you won't use the template that you're expecting to. + +Edit the file to add the theme, add a title for the site, and specify that all of our content will use the TOML format. + +``` +$ vi config.toml +theme = "zafta" +baseurl = "" +languageCode = "en-us" +title = "zafta - totally refreshing" +MetaDataFormat = "toml" +:wq + +$ +``` + +### Generate the Site + +Now that we have an empty theme, let's generate the site again. + +``` +$ hugo --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +0 pages created +0 tags created +0 categories created +in 2 ms +$ +``` + +Did you notice that the output is different? The warning message for the home page has disappeared and we have an additional information line saying that Hugo is syncing from the theme's directory. + +Let's check the public/ directory to see what Hugo's created. + +``` +$ ls -l public +total 16 +drwxr-xr-x 2 quoha staff 68 Sep 29 17:56 css +-rw-r--r-- 1 quoha staff 0 Sep 29 17:56 index.html +-rw-r--r-- 1 quoha staff 407 Sep 29 17:56 index.xml +drwxr-xr-x 2 quoha staff 68 Sep 29 17:56 js +-rw-r--r-- 1 quoha staff 243 Sep 29 17:56 sitemap.xml +$ +``` + +Notice four things: + +1. Hugo created a home page. This is the file public/index.html. +2. Hugo created a css/ directory. +3. Hugo created a js/ directory. +4. Hugo claimed that it created 0 pages. It created a file and copied over static files, but didn't create any pages. That's because it considers a "page" to be a file created directly from a content file. It doesn't count things like the index.html files that it creates automatically. + +#### The Home Page + +Hugo supports many different types of templates. The home page is special because it gets its own type of template and its own template file. The file, layouts/index.html, is used to generate the HTML for the home page. The Hugo documentation says that this is the only required template, but that depends. Hugo's warning message shows that it looks for three different templates: + +``` +WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html] +``` + +If it can't find any of these, it completely skips creating the home page. We noticed that when we built the site without having a theme installed. + +When Hugo created our theme, it created an empty home page template. Now, when we build the site, Hugo finds the template and uses it to generate the HTML for the home page. Since the template file is empty, the HTML file is empty, too. If the template had any rules in it, then Hugo would have used them to generate the home page. + +``` +$ find . -name index.html | xargs ls -l +-rw-r--r-- 1 quoha staff 0 Sep 29 20:21 ./public/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 ./themes/zafta/layouts/index.html +$ +``` + +#### The Magic of Static + +Hugo does two things when generating the site. It uses templates to transform content into HTML and it copies static files into the site. Unlike content, static files are not transformed. They are copied exactly as they are. + +Hugo assumes that your site will use both CSS and JavaScript, so it creates directories in your theme to hold them. Remember opinions? Well, Hugo's opinion is that you'll store your CSS in a directory named css/ and your JavaScript in a directory named js/. If you don't like that, you can change the directory names in your theme directory or even delete them completely. Hugo's nice enough to offer its opinion, then behave nicely if you disagree. + +``` +$ find themes/zafta -type d | xargs ls -ld +drwxr-xr-x 7 quoha staff 238 Sep 29 17:38 themes/zafta +drwxr-xr-x 3 quoha staff 102 Sep 29 17:31 themes/zafta/archetypes +drwxr-xr-x 5 quoha staff 170 Sep 29 17:31 themes/zafta/layouts +drwxr-xr-x 4 quoha staff 136 Sep 29 17:31 themes/zafta/layouts/_default +drwxr-xr-x 4 quoha staff 136 Sep 29 17:31 themes/zafta/layouts/partials +drwxr-xr-x 4 quoha staff 136 Sep 29 17:31 themes/zafta/static +drwxr-xr-x 2 quoha staff 68 Sep 29 17:31 themes/zafta/static/css +drwxr-xr-x 2 quoha staff 68 Sep 29 17:31 themes/zafta/static/js +$ +``` + +## The Theme Development Cycle + +When you're working on a theme, you will make changes in the theme's directory, rebuild the site, and check your changes in the browser. Hugo makes this very easy: + +1. Purge the public/ directory. +2. Run the built in web server in watch mode. +3. Open your site in a browser. +4. Update the theme. +5. Glance at your browser window to see changes. +6. Return to step 4. + +I’ll throw in one more opinion: never work on a theme on a live site. Always work on a copy of your site. Make changes to your theme, test them, then copy them up to your site. For added safety, use a tool like Git to keep a revision history of your content and your theme. Believe me when I say that it is too easy to lose both your mind and your changes. + +Check the main Hugo site for information on using Git with Hugo. + +### Purge the public/ Directory + +When generating the site, Hugo will create new files and update existing ones in the ```public/``` directory. It will not delete files that are no longer used. For example, files that were created in the wrong directory or with the wrong title will remain. If you leave them, you might get confused by them later. I recommend cleaning out your site prior to generating it. + +Note: If you're building on an SSD, you should ignore this. Churning on a SSD can be costly. + +### Hugo's Watch Option + +Hugo's "`--watch`" option will monitor the content/ and your theme directories for changes and rebuild the site automatically. + +### Live Reload + +Hugo's built in web server supports live reload. As pages are saved on the server, the browser is told to refresh the page. Usually, this happens faster than you can say, "Wow, that's totally amazing." + +### Development Commands + +Use the following commands as the basis for your workflow. + +``` +## purge old files. hugo will recreate the public directory. +## +$ rm -rf public +## +## run hugo in watch mode +## +$ hugo server --watch --verbose +``` + +Here's sample output showing Hugo detecting a change to the template for the home page. Once generated, the web browser automatically reloaded the page. I've said this before, it's amazing. + + +``` +$ rm -rf public +$ hugo server --watch --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +0 pages created +0 tags created +0 categories created +in 2 ms +Watching for changes in /Users/quoha/Sites/zafta/content +Serving pages from /Users/quoha/Sites/zafta/public +Web Server is available at http://localhost:1313 +Press Ctrl+C to stop +INFO: 2014/09/29 File System Event: ["/Users/quoha/Sites/zafta/themes/zafta/layouts/index.html": MODIFY|ATTRIB] +Change detected, rebuilding site + +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +0 pages created +0 tags created +0 categories created +in 1 ms +``` + +## Update the Home Page Template + +The home page is one of a few special pages that Hugo creates automatically. As mentioned earlier, it looks for one of three files in the theme's layout/ directory: + +1. index.html +2. _default/list.html +3. _default/single.html + +We could update one of the default templates, but a good design decision is to update the most specific template available. That's not a hard and fast rule (in fact, we'll break it a few times in this tutorial), but it is a good generalization. + +### Make a Static Home Page + +Right now, that page is empty because we don't have any content and we don't have any logic in the template. Let's change that by adding some text to the template. + +``` +$ vi themes/zafta/layouts/index.html + + + +

hugo says hello!

+ + +:wq + +$ +``` + +Build the web site and then verify the results. + +``` +$ hugo --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +0 pages created +0 tags created +0 categories created +in 2 ms + +$ find public -type f -name '*.html' | xargs ls -l +-rw-r--r-- 1 quoha staff 78 Sep 29 21:26 public/index.html + +$ cat public/index.html + + + +

hugo says hello!

+ +``` + +#### Live Reload + +Note: If you're running the server with the `--watch` option, you'll see different content in the file: + +``` +$ cat public/index.html + + + +

hugo says hello!

+ + +``` + +When you use `--watch`, the Live Reload script is added by Hugo. Look for live reload in the documentation to see what it does and how to disable it. + +### Build a "Dynamic" Home Page + +"Dynamic home page?" Hugo's a static web site generator, so this seems an odd thing to say. I mean let's have the home page automatically reflect the content in the site every time Hugo builds it. We'll use iteration in the template to do that. + +#### Create New Posts + +Now that we have the home page generating static content, let's add some content to the site. We'll display these posts as a list on the home page and on their own page, too. + +Hugo has a command to generate a skeleton post, just like it does for sites and themes. + +``` +$ hugo --verbose new post/first.md +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 attempting to create post/first.md of post +INFO: 2014/09/29 curpath: /Users/quoha/Sites/zafta/themes/zafta/archetypes/default.md +ERROR: 2014/09/29 Unable to Cast to map[string]interface{} + +$ +``` + +That wasn't very nice, was it? + +The "new" command uses an archetype to create the post file. Hugo created an empty default archetype file, but that causes an error when there's a theme. For me, the workaround was to create an archetypes file specifically for the post type. + +``` +$ vi themes/zafta/archetypes/post.md ++++ +Description = "" +Tags = [] +Categories = [] ++++ +:wq + +$ find themes/zafta/archetypes -type f | xargs ls -l +-rw-r--r-- 1 quoha staff 0 Sep 29 21:53 themes/zafta/archetypes/default.md +-rw-r--r-- 1 quoha staff 51 Sep 29 21:54 themes/zafta/archetypes/post.md + +$ hugo --verbose new post/first.md +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 attempting to create post/first.md of post +INFO: 2014/09/29 curpath: /Users/quoha/Sites/zafta/themes/zafta/archetypes/post.md +INFO: 2014/09/29 creating /Users/quoha/Sites/zafta/content/post/first.md +/Users/quoha/Sites/zafta/content/post/first.md created + +$ hugo --verbose new post/second.md +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 attempting to create post/second.md of post +INFO: 2014/09/29 curpath: /Users/quoha/Sites/zafta/themes/zafta/archetypes/post.md +INFO: 2014/09/29 creating /Users/quoha/Sites/zafta/content/post/second.md +/Users/quoha/Sites/zafta/content/post/second.md created + +$ ls -l content/post +total 16 +-rw-r--r-- 1 quoha staff 104 Sep 29 21:54 first.md +-rw-r--r-- 1 quoha staff 105 Sep 29 21:57 second.md + +$ cat content/post/first.md ++++ +Categories = [] +Description = "" +Tags = [] +date = "2014-09-29T21:54:53-05:00" +title = "first" + ++++ +my first post + +$ cat content/post/second.md ++++ +Categories = [] +Description = "" +Tags = [] +date = "2014-09-29T21:57:09-05:00" +title = "second" + ++++ +my second post + +$ +``` + +Build the web site and then verify the results. + +``` +$ rm -rf public +$ hugo --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 found taxonomies: map[string]string{"category":"categories", "tag":"tags"} +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +2 pages created +0 tags created +0 categories created +in 4 ms +$ +``` + +The output says that it created 2 pages. Those are our new posts: + +``` +$ find public -type f -name '*.html' | xargs ls -l +-rw-r--r-- 1 quoha staff 78 Sep 29 22:13 public/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:13 public/post/first/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:13 public/post/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:13 public/post/second/index.html +$ +``` + +The new files are empty because because the templates used to generate the content are empty. The homepage doesn't show the new content, either. We have to update the templates to add the posts. + +### List and Single Templates + +In Hugo, we have three major kinds of templates. There's the home page template that we updated previously. It is used only by the home page. We also have "single" templates which are used to generate output for a single content file. We also have "list" templates that are used to group multiple pieces of content before generating output. + +Generally speaking, list templates are named "list.html" and single templates are named "single.html." + +There are three other types of templates: partials, content views, and terms. We will not go into much detail on these. + +### Add Content to the Homepage + +The home page will contain a list of posts. Let's update its template to add the posts that we just created. The logic in the template will run every time we build the site. + +``` +$ vi themes/zafta/layouts/index.html + + + + {{ range first 10 .Data.Pages }} +

{{ .Title }}

+ {{ end }} + + +:wq + +$ +``` + +Hugo uses the Go template engine. That engine scans the template files for commands which are enclosed between "{{" and "}}". In our template, the commands are: + +1. range +2. .Title +3. end + +The "range" command is an iterator. We're going to use it to go through the first ten pages. Every HTML file that Hugo creates is treated as a page, so looping through the list of pages will look at every file that will be created. + +The ".Title" command prints the value of the "title" variable. Hugo pulls it from the front matter in the Markdown file. + +The "end" command signals the end of the range iterator. The engine loops back to the top of the iteration when it finds "end." Everything between the "range" and "end" is evaluated every time the engine goes through the iteration. In this file, that would cause the title from the first ten pages to be output as heading level one. + +It's helpful to remember that some variables, like .Data, are created before any output files. Hugo loads every content file into the variable and then gives the template a chance to process before creating the HTML files. + +Build the web site and then verify the results. + +``` +$ rm -rf public +$ hugo --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 found taxonomies: map[string]string{"tag":"tags", "category":"categories"} +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +2 pages created +0 tags created +0 categories created +in 4 ms +$ find public -type f -name '*.html' | xargs ls -l +-rw-r--r-- 1 quoha staff 94 Sep 29 22:23 public/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:23 public/post/first/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:23 public/post/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:23 public/post/second/index.html +$ cat public/index.html + + + + +

second

+ +

first

+ + + +$ +``` + +Congratulations, the home page shows the title of the two posts. The posts themselves are still empty, but let's take a moment to appreciate what we've done. Your template now generates output dynamically. Believe it or not, by inserting the range command inside of those curly braces, you've learned everything you need to know to build a theme. All that's really left is understanding which template will be used to generate each content file and becoming familiar with the commands for the template engine. + +And, if that were entirely true, this tutorial would be much shorter. There are a few things to know that will make creating a new template much easier. Don't worry, though, that's all to come. + +### Add Content to the Posts + +We're working with posts, which are in the content/post/ directory. That means that their section is "post" (and if we don't do something weird, their type is also "post"). + +Hugo uses the section and type to find the template file for every piece of content. Hugo will first look for a template file that matches the section or type name. If it can't find one, then it will look in the _default/ directory. There are some twists that we'll cover when we get to categories and tags, but for now we can assume that Hugo will try post/single.html, then _default/single.html. + +Now that we know the search rule, let's see what we actually have available: + +``` +$ find themes/zafta -name single.html | xargs ls -l +-rw-r--r-- 1 quoha staff 132 Sep 29 17:31 themes/zafta/layouts/_default/single.html +``` + +We could create a new template, post/single.html, or change the default. Since we don't know of any other content types, let's start with updating the default. + +Remember, any content that we haven't created a template for will end up using this template. That can be good or bad. Bad because I know that we're going to be adding different types of content and we're going to end up undoing some of the changes we've made. It's good because we'll be able to see immediate results. It's also good to start here because we can start to build the basic layout for the site. As we add more content types, we'll refactor this file and move logic around. Hugo makes that fairly painless, so we'll accept the cost and proceed. + +Please see the Hugo documentation on template rendering for all the details on determining which template to use. And, as the docs mention, if you're building a single page application (SPA) web site, you can delete all of the other templates and work with just the default single page. That's a refreshing amount of joy right there. + +#### Update the Template File + +``` +$ vi themes/zafta/layouts/_default/single.html + + + + {{ .Title }} + + +

{{ .Title }}

+ {{ .Content }} + + +:wq + +$ +``` + +Build the web site and verify the results. + +``` +$ rm -rf public +$ hugo --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 found taxonomies: map[string]string{"tag":"tags", "category":"categories"} +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +2 pages created +0 tags created +0 categories created +in 4 ms + +$ find public -type f -name '*.html' | xargs ls -l +-rw-r--r-- 1 quoha staff 94 Sep 29 22:40 public/index.html +-rw-r--r-- 1 quoha staff 125 Sep 29 22:40 public/post/first/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:40 public/post/index.html +-rw-r--r-- 1 quoha staff 128 Sep 29 22:40 public/post/second/index.html + +$ cat public/post/first/index.html + + + + first + + +

first

+

my first post

+ + + + +$ cat public/post/second/index.html + + + + second + + +

second

+

my second post

+ + + +$ +``` + +Notice that the posts now have content. You can go to localhost:1313/post/first to verify. + +### Linking to Content + +The posts are on the home page. Let's add a link from there to the post. Since this is the home page, we'll update its template. + +``` +$ vi themes/zafta/layouts/index.html + + + + {{ range first 10 .Data.Pages }} +

{{ .Title }}

+ {{ end }} + + +``` + +Build the web site and verify the results. + +``` +$ rm -rf public +$ hugo --verbose +INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/ +INFO: 2014/09/29 found taxonomies: map[string]string{"tag":"tags", "category":"categories"} +WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html] +0 draft content +0 future content +2 pages created +0 tags created +0 categories created +in 4 ms + +$ find public -type f -name '*.html' | xargs ls -l +-rw-r--r-- 1 quoha staff 149 Sep 29 22:44 public/index.html +-rw-r--r-- 1 quoha staff 125 Sep 29 22:44 public/post/first/index.html +-rw-r--r-- 1 quoha staff 0 Sep 29 22:44 public/post/index.html +-rw-r--r-- 1 quoha staff 128 Sep 29 22:44 public/post/second/index.html + +$ cat public/index.html + + + + +

second

+ +

first

+ + + + +$ +``` + +### Create a Post Listing + +We have the posts displaying on the home page and on their own page. We also have a file public/post/index.html that is empty. Let's make it show a list of all posts (not just the first ten). + +We need to decide which template to update. This will be a listing, so it should be a list template. Let's take a quick look and see which list templates are available. + +``` +$ find themes/zafta -name list.html | xargs ls -l +-rw-r--r-- 1 quoha staff 0 Sep 29 17:31 themes/zafta/layouts/_default/list.html +``` + +As with the single post, we have to decide to update _default/list.html or create post/list.html. We still don't have multiple content types, so let's stay consistent and update the default list template. + +## Creating Top Level Pages + +Let's add an "about" page and display it at the top level (as opposed to a sub-level like we did with posts). + +The default in Hugo is to use the directory structure of the content/ directory to guide the location of the generated html in the public/ directory. Let's verify that by creating an "about" page at the top level: + +``` +$ vi content/about.md ++++ +title = "about" +description = "about this site" +date = "2014-09-27" +slug = "about time" ++++ + +## about us + +i'm speechless +:wq +``` + +Generate the web site and verify the results. + +``` +$ find public -name '*.html' | xargs ls -l +-rw-rw-r-- 1 mdhender staff 334 Sep 27 15:08 public/about-time/index.html +-rw-rw-r-- 1 mdhender staff 527 Sep 27 15:08 public/index.html +-rw-rw-r-- 1 mdhender staff 358 Sep 27 15:08 public/post/first-post/index.html +-rw-rw-r-- 1 mdhender staff 0 Sep 27 15:08 public/post/index.html +-rw-rw-r-- 1 mdhender staff 342 Sep 27 15:08 public/post/second-post/index.html +``` + +Notice that the page wasn't created at the top level. It was created in a sub-directory named 'about-time/'. That name came from our slug. Hugo will use the slug to name the generated content. It's a reasonable default, by the way, but we can learn a few things by fighting it for this file. + +One other thing. Take a look at the home page. + +``` +$ cat public/index.html + + + +

creating a new theme

+

about

+

second

+

first

+ + +``` + +Notice that the "about" link is listed with the posts? That's not desirable, so let's change that first. + +``` +$ vi themes/zafta/layouts/index.html + + + +

posts

+ {{ range first 10 .Data.Pages }} + {{ if eq .Type "post"}} +

{{ .Title }}

+ {{ end }} + {{ end }} + +

pages

+ {{ range .Data.Pages }} + {{ if eq .Type "page" }} +

{{ .Title }}

+ {{ end }} + {{ end }} + + +:wq +``` + +Generate the web site and verify the results. The home page has two sections, posts and pages, and each section has the right set of headings and links in it. + +But, that about page still renders to about-time/index.html. + +``` +$ find public -name '*.html' | xargs ls -l +-rw-rw-r-- 1 mdhender staff 334 Sep 27 15:33 public/about-time/index.html +-rw-rw-r-- 1 mdhender staff 645 Sep 27 15:33 public/index.html +-rw-rw-r-- 1 mdhender staff 358 Sep 27 15:33 public/post/first-post/index.html +-rw-rw-r-- 1 mdhender staff 0 Sep 27 15:33 public/post/index.html +-rw-rw-r-- 1 mdhender staff 342 Sep 27 15:33 public/post/second-post/index.html +``` + +Knowing that hugo is using the slug to generate the file name, the simplest solution is to change the slug. Let's do it the hard way and change the permalink in the configuration file. + +``` +$ vi config.toml +[permalinks] + page = "/:title/" + about = "/:filename/" +``` + +Generate the web site and verify that this didn't work. Hugo lets "slug" or "URL" override the permalinks setting in the configuration file. Go ahead and comment out the slug in content/about.md, then generate the web site to get it to be created in the right place. + +## Sharing Templates + +If you've been following along, you probably noticed that posts have titles in the browser and the home page doesn't. That's because we didn't put the title in the home page's template (layouts/index.html). That's an easy thing to do, but let's look at a different option. + +We can put the common bits into a shared template that's stored in the themes/zafta/layouts/partials/ directory. + +### Create the Header and Footer Partials + +In Hugo, a partial is a sugar-coated template. Normally a template reference has a path specified. Partials are different. Hugo searches for them along a TODO defined search path. This makes it easier for end-users to override the theme's presentation. + +``` +$ vi themes/zafta/layouts/partials/header.html + + + + {{ .Title }} + + +:wq + +$ vi themes/zafta/layouts/partials/footer.html + + +:wq +``` + +### Update the Home Page Template to Use the Partials + +The most noticeable difference between a template call and a partials call is the lack of path: + +``` +{{ template "theme/partials/header.html" . }} +``` +versus +``` +{{ partial "header.html" . }} +``` +Both pass in the context. + +Let's change the home page template to use these new partials. + +``` +$ vi themes/zafta/layouts/index.html +{{ partial "header.html" . }} + +

posts

+ {{ range first 10 .Data.Pages }} + {{ if eq .Type "post"}} +

{{ .Title }}

+ {{ end }} + {{ end }} + +

pages

+ {{ range .Data.Pages }} + {{ if or (eq .Type "page") (eq .Type "about") }} +

{{ .Type }} - {{ .Title }} - {{ .RelPermalink }}

+ {{ end }} + {{ end }} + +{{ partial "footer.html" . }} +:wq +``` + +Generate the web site and verify the results. The title on the home page is now "your title here", which comes from the "title" variable in the config.toml file. + +### Update the Default Single Template to Use the Partials + +``` +$ vi themes/zafta/layouts/_default/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+ {{ .Content }} + +{{ partial "footer.html" . }} +:wq +``` + +Generate the web site and verify the results. The title on the posts and the about page should both reflect the value in the markdown file. + +## Add “Date Published” to Posts + +It's common to have posts display the date that they were written or published, so let's add that. The front matter of our posts has a variable named "date." It's usually the date the content was created, but let's pretend that's the value we want to display. + +### Add “Date Published” to the Template + +We'll start by updating the template used to render the posts. The template code will look like: + +``` +{{ .Date.Format "Mon, Jan 2, 2006" }} +``` + +Posts use the default single template, so we'll change that file. + +``` +$ vi themes/zafta/layouts/_default/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+

{{ .Date.Format "Mon, Jan 2, 2006" }}

+ {{ .Content }} + +{{ partial "footer.html" . }} +:wq +``` + +Generate the web site and verify the results. The posts now have the date displayed in them. There's a problem, though. The "about" page also has the date displayed. + +As usual, there are a couple of ways to make the date display only on posts. We could do an "if" statement like we did on the home page. Another way would be to create a separate template for posts. + +The "if" solution works for sites that have just a couple of content types. It aligns with the principle of "code for today," too. + +Let's assume, though, that we've made our site so complex that we feel we have to create a new template type. In Hugo-speak, we're going to create a section template. + +Let's restore the default single template before we forget. + +``` +$ mkdir themes/zafta/layouts/post +$ vi themes/zafta/layouts/_default/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+ {{ .Content }} + +{{ partial "footer.html" . }} +:wq +``` + +Now we'll update the post's version of the single template. If you remember Hugo's rules, the template engine will use this version over the default. + +``` +$ vi themes/zafta/layouts/post/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+

{{ .Date.Format "Mon, Jan 2, 2006" }}

+ {{ .Content }} + +{{ partial "footer.html" . }} +:wq + +``` + +Note that we removed the date logic from the default template and put it in the post template. Generate the web site and verify the results. Posts have dates and the about page doesn't. + +### Don't Repeat Yourself + +DRY is a good design goal and Hugo does a great job supporting it. Part of the art of a good template is knowing when to add a new template and when to update an existing one. While you're figuring that out, accept that you'll be doing some refactoring. Hugo makes that easy and fast, so it's okay to delay splitting up a template. diff --git a/themes/mainroad/exampleSite/content/post/goisforlovers.md b/themes/mainroad/exampleSite/content/post/goisforlovers.md new file mode 100644 index 0000000..2ff186d --- /dev/null +++ b/themes/mainroad/exampleSite/content/post/goisforlovers.md @@ -0,0 +1,344 @@ +--- +title: "(Hu)go Template Primer" +date: 2014-04-02 +thumbnail: "img/placeholder.png" +tags: + - "go" + - "golang" + - "templates" + - "themes" + - "development" +categories: + - "Development" + - "golang" +menu: main +--- + +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 + +Go lang 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 }} + +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" }}

{{ index .Params "title" }}

{{ 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 }}

{{ . }}

{{ 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 }} +
  • {{ . }} - {{ $title }}
  • + {{ 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 }} +
    + {{ .TableOfContents }} +
    + {{ 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 `
    ` 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}}
    +
    {{.Site.Params.CopyrightHTML | safeHtml}}
    +
    {{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}}{{end}} +``` + +Finally, if you want to pull "magic constants" out of your layouts, you can do +so, such as in this example: + +``` + +``` + + +[go]: +[gohtmltemplate]: diff --git a/themes/mainroad/exampleSite/content/post/hugoisforlovers.md b/themes/mainroad/exampleSite/content/post/hugoisforlovers.md new file mode 100644 index 0000000..4f9d6b6 --- /dev/null +++ b/themes/mainroad/exampleSite/content/post/hugoisforlovers.md @@ -0,0 +1,86 @@ +--- +title: Getting Started with Hugo +date: 2014-04-02 +tags: + - "go" + - "golang" + - "hugo" + - "development" +categories: + - "Development" + - "golang" +menu: main +--- + +## Step 1. Install Hugo + +Goto [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 [installing hugo](/overview/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. diff --git a/themes/mainroad/exampleSite/content/post/migrate-from-jekyll.md b/themes/mainroad/exampleSite/content/post/migrate-from-jekyll.md new file mode 100644 index 0000000..8df264e --- /dev/null +++ b/themes/mainroad/exampleSite/content/post/migrate-from-jekyll.md @@ -0,0 +1,155 @@ +--- +title: Migrate to Hugo from Jekyll +date: 2014-03-10 +linktitle: Migrating from Jekyll +menu: + main: + name: Jekyll migration + 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 + + ▾ / + ▾ images/ + logo.png + +should become + + ▾ / + ▾ 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 = "
    " + else + source = "
    " + end + if @link + source += "" + end + source += "" + if @link + source += "" + end + source += "
    #{@caption}
    " if @caption + source += "
    " + source + end + end + end + Liquid::Template.register_tag('image', Jekyll::ImageTag) + +is written as this Hugo shortcode: + + +
    + {{ with .Get "link"}}{{ end }} + + {{ if .Get "link"}}{{ end }} + {{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}} +
    {{ if isset .Params "title" }} + {{ .Get "title" }}{{ end }} + {{ if or (.Get "caption") (.Get "attr")}}

    + {{ .Get "caption" }} + {{ with .Get "attrlink"}} {{ end }} + {{ .Get "attr" }} + {{ if .Get "attrlink"}} {{ end }} +

    {{ end }} +
    + {{ end }} +
    + + +### 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). diff --git a/themes/mainroad/exampleSite/data/.gitkeep b/themes/mainroad/exampleSite/data/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/themes/mainroad/exampleSite/static/.gitkeep b/themes/mainroad/exampleSite/static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/themes/mainroad/i18n/en.yaml b/themes/mainroad/i18n/en.yaml new file mode 100644 index 0000000..3cac8dd --- /dev/null +++ b/themes/mainroad/i18n/en.yaml @@ -0,0 +1,63 @@ +# General +- id: read_more + translation: Read more… + +# Post meta +- id: meta_lastmod + translation: Last Modified + +# Table of Contents +- id: toc_title + translation: Page content + +# Post nav +- id: post_nav_prev + translation: Previous + +- id: post_nav_next + translation: Next + +# Authorbox +- id: authorbox_name + translation: About {{ .Count }} + +# Sidebar +- id: sidebar_warning + translation: WARNING + +- id: sidebar_recommendation + translation: Please activate at least one sidebar widget. + +# Search widget +- id: search_placeholder + translation: SEARCH... + +# Categories widget +- id: categories_title + translation: Categories + +# Recent Posts widget +- id: recent_title + translation: Recent Posts + +# Social widget +- id: social_title + translation: Social + +# Tags List widget +- id: tags_title + translation: Tags + +# Footer +- id: footer_credits + translation: "Generated with Hugo and Mainroad theme." + +# 404 +- id: 404_title + translation: 404. Page not found + +- id: 404_text + translation: "The page you were looking for appears to have been moved, deleted or does not exist. Please, use search or go to" + +- id: 404_linktext + translation: "main page" diff --git a/themes/mainroad/images/screenshot.png b/themes/mainroad/images/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..d67e2c05170e98baf4583e2fc93f42669e45c5c7 GIT binary patch literal 58734 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 literal 0 HcmV?d00001 diff --git a/themes/mainroad/layouts/404.html b/themes/mainroad/layouts/404.html new file mode 100644 index 0000000..c8532ba --- /dev/null +++ b/themes/mainroad/layouts/404.html @@ -0,0 +1,11 @@ +{{ partial "header.html" . }} + +
    +
    +

    {{ T "404_title" }}

    +

    {{ T "404_text" }} {{ T "404_linktext" }}.

    +
    +
    + +{{ partial "sidebar.html" . }} +{{ partial "footer.html" . }} \ No newline at end of file diff --git a/themes/mainroad/layouts/_default/list.html b/themes/mainroad/layouts/_default/list.html new file mode 100644 index 0000000..7f926db --- /dev/null +++ b/themes/mainroad/layouts/_default/list.html @@ -0,0 +1,39 @@ +{{ partial "header.html" . }} + +
    + {{- if not .IsHome}} + {{- with .Title }} + + {{- end }} + {{- end }} + {{- with .Content }} +
    + {{ . }} +
    + {{- end }} + {{- if .IsHome }} + {{- $postSections := ($.Param "postSections" | default (slice "post")) }} + {{- $paginator := .Paginate ( where .Data.Pages "Section" "in" $postSections ) }} + {{- range $paginator.Pages }} + {{- .Render "summary" }} + {{- end }} + {{- if eq $paginator.TotalNumberOfElements 0 }} +
    + +

    You don't have any posts yet!

    +

    As posts are added in {{ replaceRE ",([^,]*)$" " or $1" (delimit (apply $postSections "printf" "content/%s" ".") ", ") }} folder{{ if gt (len $postSections) 1 }}s{{ end }}, they'll appear here.

    +
    + {{- end }} + {{ else }} + {{- range .Paginator.Pages }} + {{- .Render "summary" }} + {{- end }} + {{- end }} + + {{ partial "pagination.html" . }} +
    + +{{ partial "sidebar.html" . }} +{{ partial "footer.html" . }} \ No newline at end of file diff --git a/themes/mainroad/layouts/_default/single.html b/themes/mainroad/layouts/_default/single.html new file mode 100644 index 0000000..613d7a7 --- /dev/null +++ b/themes/mainroad/layouts/_default/single.html @@ -0,0 +1,26 @@ +{{ partial "header.html" . }} + +
    +
    +
    +

    {{ .Title }}

    + {{- if or (not .Date.IsZero) .Params.categories }}{{ end }} +
    + {{- if .Params.thumbnail }} +
    + {{ .Title }} +
    + {{- end }} + {{- partial "post_toc.html" . -}} +
    + {{ .Content }} +
    + {{ partial "post_tags.html" . }} +
    + {{ partial "authorbox.html" . }} + {{ partial "post_nav.html" . }} + {{ partial "comments.html" . }} +
    + +{{ partial "sidebar.html" . }} +{{ partial "footer.html" . }} \ No newline at end of file diff --git a/themes/mainroad/layouts/_default/summary.html b/themes/mainroad/layouts/_default/summary.html new file mode 100644 index 0000000..bbcab3a --- /dev/null +++ b/themes/mainroad/layouts/_default/summary.html @@ -0,0 +1,27 @@ +
    + {{- if .Params.thumbnail }} +
    + + {{ .Title }} + +
    + {{- end }} +
    +
    +

    + {{ .Title }} +

    + {{- if or (not .Date.IsZero) .Params.categories }}
    {{ partial "post_meta.html" . }}
    {{- end }} +
    +
    + {{ .Summary }} +
    + {{- if .Site.Params.readmore }} + {{- if .Truncated }} + + {{- end }} + {{- end }} +
    +
    \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/authorbox.html b/themes/mainroad/layouts/partials/authorbox.html new file mode 100644 index 0000000..b744fd7 --- /dev/null +++ b/themes/mainroad/layouts/partials/authorbox.html @@ -0,0 +1,22 @@ +{{- if .Param "authorbox" }} +
    + {{- if and (not .Site.Author.avatar) (not .Site.Author.name) (not .Site.Author.bio) }} +

    WARNING: Authorbox is activated, but [Author] parameters are not specified.

    + {{- end }} + {{- with .Site.Author.avatar }} +
    + {{ $.Site.Author.name }} avatar +
    + {{- end }} + {{- with .Site.Author.name }} +
    + {{ T "authorbox_name" . }} +
    + {{- end }} + {{- with .Site.Author.bio }} +
    + {{ . }} +
    + {{- end }} +
    +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/comments.html b/themes/mainroad/layouts/partials/comments.html new file mode 100644 index 0000000..32b1d20 --- /dev/null +++ b/themes/mainroad/layouts/partials/comments.html @@ -0,0 +1,5 @@ +{{ if and .Site.DisqusShortname (not (or .Site.Params.disable_comments .Params.disable_comments)) }} +
    + {{ template "_internal/disqus.html" . }} +
    +{{ end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/footer.html b/themes/mainroad/layouts/partials/footer.html new file mode 100644 index 0000000..f323d79 --- /dev/null +++ b/themes/mainroad/layouts/partials/footer.html @@ -0,0 +1,16 @@ +
    +
    +
    + +
    +
    +
    + + +{{- partial "mathjax.html" . -}} + + \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/header.html b/themes/mainroad/layouts/partials/header.html new file mode 100644 index 0000000..2d074eb --- /dev/null +++ b/themes/mainroad/layouts/partials/header.html @@ -0,0 +1,36 @@ + + + + + + + {{ .Title }} + + {{ .Hugo.Generator }} + {{ if .Site.Params.opengraph }}{{ template "_internal/opengraph.html" . }}{{ end }} + {{ if .Site.Params.twitter_cards }}{{ template "_internal/twitter_cards.html" . }}{{ end }} + + + {{- range .AlternativeOutputFormats }} + + {{- end }} + + + + + {{ template "_internal/google_analytics_async.html" . }} + + +
    +
    + + {{ partial "menu.html" . }} +
    +
    \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/mathjax.html b/themes/mainroad/layouts/partials/mathjax.html new file mode 100644 index 0000000..19af143 --- /dev/null +++ b/themes/mainroad/layouts/partials/mathjax.html @@ -0,0 +1,3 @@ +{{ if and .IsPage (eq (.Param "mathjax") true) }} + +{{ end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/menu.html b/themes/mainroad/layouts/partials/menu.html new file mode 100644 index 0000000..9f75cd0 --- /dev/null +++ b/themes/mainroad/layouts/partials/menu.html @@ -0,0 +1,14 @@ +{{- if .Site.Menus.main }} + +{{ else -}} +
    +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/pagination.html b/themes/mainroad/layouts/partials/pagination.html new file mode 100644 index 0000000..fa3024d --- /dev/null +++ b/themes/mainroad/layouts/partials/pagination.html @@ -0,0 +1,11 @@ +{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }} + +{{ end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/post_meta.html b/themes/mainroad/layouts/partials/post_meta.html new file mode 100644 index 0000000..5aa697d --- /dev/null +++ b/themes/mainroad/layouts/partials/post_meta.html @@ -0,0 +1,13 @@ +{{- if not .Date.IsZero }} + + +{{- end }} +{{- if ne .Date .Lastmod }} + +{{- end }} +{{- if .Params.categories }} + +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/post_nav.html b/themes/mainroad/layouts/partials/post_nav.html new file mode 100644 index 0000000..b089cf7 --- /dev/null +++ b/themes/mainroad/layouts/partials/post_nav.html @@ -0,0 +1,16 @@ +{{- if .Site.Params.post_navigation }} +{{- if or (.PrevInSection) (.NextInSection) }} + +{{- end }} +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/post_tags.html b/themes/mainroad/layouts/partials/post_tags.html new file mode 100644 index 0000000..eeed70f --- /dev/null +++ b/themes/mainroad/layouts/partials/post_tags.html @@ -0,0 +1,10 @@ +{{- if .Params.tags }} + +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/post_toc.html b/themes/mainroad/layouts/partials/post_toc.html new file mode 100644 index 0000000..2133247 --- /dev/null +++ b/themes/mainroad/layouts/partials/post_toc.html @@ -0,0 +1,8 @@ +{{ if .Param "toc" }} +
    +
    {{ T "toc_title" }}
    +
    + {{ .TableOfContents }} +
    +
    +{{ end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/sidebar.html b/themes/mainroad/layouts/partials/sidebar.html new file mode 100644 index 0000000..014c118 --- /dev/null +++ b/themes/mainroad/layouts/partials/sidebar.html @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/widgets/categories.html b/themes/mainroad/layouts/partials/widgets/categories.html new file mode 100644 index 0000000..80b3cff --- /dev/null +++ b/themes/mainroad/layouts/partials/widgets/categories.html @@ -0,0 +1,16 @@ +{{- if .Site.Params.widgets.categories }} +{{- if isset .Site.Taxonomies "categories" }} +{{- if not (eq (len .Site.Taxonomies.categories) 0) }} +
    +

    {{ T "categories_title" }}

    +
    + +
    +
    +{{- end }} +{{- end }} +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/widgets/recent.html b/themes/mainroad/layouts/partials/widgets/recent.html new file mode 100644 index 0000000..50717e1 --- /dev/null +++ b/themes/mainroad/layouts/partials/widgets/recent.html @@ -0,0 +1,13 @@ +{{- if .Site.Params.widgets.recent_articles }} +
    +

    {{ T "recent_title" }}

    +
    +
      + {{- $recent_articles_num := (.Site.Params.widgets.recent_articles_num | default 10) }} + {{- range first $recent_articles_num (where .Site.RegularPages "Section" "in" (.Site.Params.postSections | default (slice "post"))) }} +
    • {{ .Title }}
    • + {{- end }} +
    +
    +
    +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/widgets/search.html b/themes/mainroad/layouts/partials/widgets/search.html new file mode 100644 index 0000000..525c458 --- /dev/null +++ b/themes/mainroad/layouts/partials/widgets/search.html @@ -0,0 +1,11 @@ +{{- if .Site.Params.widgets.search }} + +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/widgets/social.html b/themes/mainroad/layouts/partials/widgets/social.html new file mode 100644 index 0000000..38ddefa --- /dev/null +++ b/themes/mainroad/layouts/partials/widgets/social.html @@ -0,0 +1,55 @@ +{{- if or .Site.Params.widgets.social_facebook .Site.Params.widgets.social_twitter .Site.Params.widgets.social_linkedin .Site.Params.widgets.social_github .Site.Params.widgets.social_google_plus .Site.Params.widgets.social_email }} +
    +

    {{ T "social_title" }}

    +
    + {{- with .Site.Params.widgets.social_facebook }} + + {{ end -}} + {{- with .Site.Params.widgets.social_twitter }} + + {{- end }} + {{- with .Site.Params.widgets.social_linkedin }} + + {{- end }} + {{- with .Site.Params.widgets.social_github }} + + {{- end }} + {{- with .Site.Params.widgets.social_google_plus }} + + {{- end }} + {{- with .Site.Params.widgets.social_email }} + + {{- end }} +
    +
    +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/layouts/partials/widgets/taglist.html b/themes/mainroad/layouts/partials/widgets/taglist.html new file mode 100644 index 0000000..12e8deb --- /dev/null +++ b/themes/mainroad/layouts/partials/widgets/taglist.html @@ -0,0 +1,14 @@ +{{- if .Site.Params.widgets.tags }} +{{- if isset .Site.Taxonomies "tags" }} +{{- if not (eq (len .Site.Taxonomies.tags) 0) }} +
    +

    {{ T "tags_title" }}

    +
    + {{- range $name, $items := .Site.Taxonomies.tags }} + {{ $name | humanize }}{{ if $.Site.Params.widgets.tags_counter }} ({{ $items.Count }}){{ end }} + {{- end }} +
    +
    +{{- end }} +{{- end }} +{{- end }} \ No newline at end of file diff --git a/themes/mainroad/package-lock.json b/themes/mainroad/package-lock.json new file mode 100644 index 0000000..381579a --- /dev/null +++ b/themes/mainroad/package-lock.json @@ -0,0 +1,3584 @@ +{ + "name": "mainroad", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.46.tgz", + "integrity": "sha512-7BKRkmYaPZm3Yff5HGZJKCz7RqZ5jUjknsXT6Gz5YKG23J3uq9hAj0epncCB0rlqmnZ8Q+UUpQB2tCR5mT37vw==", + "dev": true, + "requires": { + "@babel/highlight": "7.0.0-beta.46" + } + }, + "@babel/core": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.0.0-beta.46.tgz", + "integrity": "sha512-lCDbBSAhNAt+nL98xbgWmuhgrIxKvbvFHf73zlNCuXCHJkdlo7qzTofYK0ZWb+OVce8fQ17fC7DwTIhAwowzMw==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0-beta.46", + "@babel/generator": "7.0.0-beta.46", + "@babel/helpers": "7.0.0-beta.46", + "@babel/template": "7.0.0-beta.46", + "@babel/traverse": "7.0.0-beta.46", + "@babel/types": "7.0.0-beta.46", + "babylon": "7.0.0-beta.46", + "convert-source-map": "^1.1.0", + "debug": "^3.1.0", + "json5": "^0.5.0", + "lodash": "^4.2.0", + "micromatch": "^2.3.11", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.46.tgz", + "integrity": "sha512-5VfaEVkPG0gpNSTcf70jvV+MjbMoNn4g2iluwM7MhciedkolEtmG7PcdoUj5W1EmMfngz5cF65V7UMZXJO6y8Q==", + "dev": true, + "requires": { + "@babel/types": "7.0.0-beta.46", + "jsesc": "^2.5.1", + "lodash": "^4.2.0", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.46.tgz", + "integrity": "sha512-zm4Kc5XB2njGs8PkmjV1zE/g1hBuphbh+VcDyFLaQsxkxSFSUtCbKwFL8AQpL/qPIcGbvX1MBt50a/3ZZH2CQA==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "7.0.0-beta.46", + "@babel/template": "7.0.0-beta.46", + "@babel/types": "7.0.0-beta.46" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.46.tgz", + "integrity": "sha512-dPrTb7QHVx44xJLjUl3LGAc13iS7hdXdO0fiOxdRN1suIS91yGGgeuwiQBlrw5SxbFchYtwenhlKbqHdVfGyVA==", + "dev": true, + "requires": { + "@babel/types": "7.0.0-beta.46" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.46.tgz", + "integrity": "sha512-UT7acgV7wsnBPwnqslqcnUFvsPBP4TtVaYM82xPGA7+evAa8q8HXOmFk08qsMK/pX/yy4+51gJJwyw2zofnacA==", + "dev": true, + "requires": { + "@babel/types": "7.0.0-beta.46" + } + }, + "@babel/helpers": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.0.0-beta.46.tgz", + "integrity": "sha512-mbpH9pM3pJzo/tBr75U+zva3pqpyivogt1aofgEoD7bWFAYSuqOudRuz+m4XP6VPxxLoxcA4SFPGkuLRt9+7nQ==", + "dev": true, + "requires": { + "@babel/template": "7.0.0-beta.46", + "@babel/traverse": "7.0.0-beta.46", + "@babel/types": "7.0.0-beta.46" + } + }, + "@babel/highlight": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.46.tgz", + "integrity": "sha512-r4snW6Q8ICL3Y8hGzYJRvyG/+sc+kvkewXNedG9tQjoHmUFMwMSv/o45GWQUQswevGnWghiGkpRPivFfOuMsOA==", + "dev": true, + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^3.0.0" + } + }, + "@babel/template": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.0.0-beta.46.tgz", + "integrity": "sha512-3/qi4m0l6G/vZbEwtqfzJk73mYtuE7nvAO1zT3/ZrTAHy4sHf2vaF9Eh1w+Tau263Yrkh0bjVQPb9zw6G+GeMQ==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0-beta.46", + "@babel/types": "7.0.0-beta.46", + "babylon": "7.0.0-beta.46", + "lodash": "^4.2.0" + } + }, + "@babel/traverse": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.0.0-beta.46.tgz", + "integrity": "sha512-IU7MTGbcjpfhf5tyCu3sDB7sWYainZQcT+CqOBdVZXZfq5MMr130R7aiZBI2g5dJYUaW1PS81DVNpd0/Sq/Gzg==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0-beta.46", + "@babel/generator": "7.0.0-beta.46", + "@babel/helper-function-name": "7.0.0-beta.46", + "@babel/helper-split-export-declaration": "7.0.0-beta.46", + "@babel/types": "7.0.0-beta.46", + "babylon": "7.0.0-beta.46", + "debug": "^3.1.0", + "globals": "^11.1.0", + "invariant": "^2.2.0", + "lodash": "^4.2.0" + } + }, + "@babel/types": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.46.tgz", + "integrity": "sha512-uA5aruF2KKsJxToWdDpftsrPOIQtoGrGno2hiaeO9JRvfT9xZdK11nPoC+/RF9emNzmNbWn4HCRdCY+McT5Nbw==", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.2.0", + "to-fast-properties": "^2.0.0" + } + }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dev": true, + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + } + }, + "ajv": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.0.tgz", + "integrity": "sha512-VDUX1oSajablmiyFyED9L1DFndg0P9h7p1F+NO8FkIzei6EPrR6Zu1n18rd5P8PqaSRd/FrWv3G1TVBqpM83gA==", + "dev": true, + "requires": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0", + "uri-js": "^4.2.1" + } + }, + "ajv-keywords": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", + "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-iterate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-1.1.2.tgz", + "integrity": "sha512-1hWSHTIlG/8wtYD+PPX5AOBtKWngpDFjrsrHgZpe+JdgNGz0udYu6ZIkAa/xuenIUEqFv7DvE2Yr60jxweJSrQ==", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "atob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", + "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=", + "dev": true + }, + "autoprefixer": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-8.4.1.tgz", + "integrity": "sha512-YqUclCBDXUT9Y7aQ8Xv+ja8yhTZYJoMsOD7WS++gZIJLCpCu+gPcKGDlhk6S3WxhLkTcNVdaMZAWys2nzZCH7g==", + "dev": true, + "requires": { + "browserslist": "^3.2.6", + "caniuse-lite": "^1.0.30000832", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^6.0.22", + "postcss-value-parser": "^3.2.3" + } + }, + "babylon": { + "version": "7.0.0-beta.46", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.46.tgz", + "integrity": "sha512-WFJlg2WatdkXRFMpk7BN/Uzzkjkcjk+WaqnrSCpay+RYl4ypW9ZetZyT9kNt22IH/BQNst3M6PaaBn9IXsUNrg==", + "dev": true + }, + "bail": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.3.tgz", + "integrity": "sha512-1X8CnjFVQ+a+KW36uBNMTU5s8+v5FzeqrP7hTG5aTb4aPreSbZJlhwPon9VKMuEVgV++JM+SQrALY3kr7eswdg==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "browserslist": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.6.tgz", + "integrity": "sha512-XCsMSg9V4S1VRdcp265dJ+8kBRjfuFXcavbisY7G6T9QI0H1Z24PP53vvs0WDYWqm38Mco1ILDtafcS8ZR4xiw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000830", + "electron-to-chromium": "^1.3.42" + } + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "dev": true + }, + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + }, + "camelcase-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz", + "integrity": "sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=", + "dev": true, + "requires": { + "camelcase": "^4.1.0", + "map-obj": "^2.0.0", + "quick-lru": "^1.0.0" + } + }, + "caniuse-lite": { + "version": "1.0.30000836", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000836.tgz", + "integrity": "sha512-DlVR8sVTKDgd7t95U0shX3g7MeJ/DOjKOhUcaiXqnVmnO5sG4Tn2rLVOkVfPUJgnQNxnGe8/4GK0dGSI+AagQw==", + "dev": true + }, + "ccount": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.3.tgz", + "integrity": "sha512-Jt9tIBkRc9POUof7QA/VwWd+58fKkEEfI+/t1/eOlxKM7ZhrczNzMFefge7Ai+39y1pR/pP6cI19guHy3FSLmw==", + "dev": true + }, + "chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "character-entities": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.2.tgz", + "integrity": "sha512-sMoHX6/nBiy3KKfC78dnEalnpn0Az0oSNvqUWYTtYrhRI5iUIYsROU48G+E+kMFQzqXaJ8kHJZ85n7y6/PHgwQ==", + "dev": true + }, + "character-entities-html4": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.2.tgz", + "integrity": "sha512-sIrXwyna2+5b0eB9W149izTPJk/KkJTg6mEzDGibwBUkyH1SbDa+nf515Ppdi3MaH35lW0JFJDWeq9Luzes1Iw==", + "dev": true + }, + "character-entities-legacy": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz", + "integrity": "sha512-9NB2VbXtXYWdXzqrvAHykE/f0QJxzaKIpZ5QzNZrrgQ7Iyxr2vnfS8fCBNVW9nUEZE0lo57nxKRqnzY/dKrwlA==", + "dev": true + }, + "character-reference-invalid": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz", + "integrity": "sha512-7I/xceXfKyUJmSAn/jw8ve/9DyOP7XxufNYLI9Px7CmsKgEUaZLUTax6nZxGQtaoiZCjpu6cHPj20xC/vqRReQ==", + "dev": true + }, + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clone-regexp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz", + "integrity": "sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==", + "dev": true, + "requires": { + "is-regexp": "^1.0.0", + "is-supported-regexp-flag": "^1.0.0" + } + }, + "collapse-white-space": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.4.tgz", + "integrity": "sha512-YfQ1tAUZm561vpYD+5eyWN8+UsceQbSrqqlc/6zDY2gtAE+uZLSdkkovhnGpmCThsvKBFakq4EdY/FF93E8XIw==", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", + "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", + "dev": true, + "requires": { + "color-name": "^1.1.1" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "convert-source-map": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", + "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=", + "dev": true + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cosmiconfig": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz", + "integrity": "sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==", + "dev": true, + "requires": { + "is-directory": "^0.3.1", + "js-yaml": "^3.9.0", + "parse-json": "^4.0.0", + "require-from-string": "^2.0.1" + } + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + } + } + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", + "dev": true, + "requires": { + "globby": "^5.0.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "rimraf": "^2.2.8" + }, + "dependencies": { + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + } + }, + "dom-serializer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", + "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", + "dev": true, + "requires": { + "domelementtype": "~1.1.1", + "entities": "~1.1.1" + }, + "dependencies": { + "domelementtype": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", + "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", + "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=", + "dev": true + }, + "domhandler": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz", + "integrity": "sha1-iS5HAAqZvlW783dP/qBWHYh5wlk=", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-prop": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", + "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", + "dev": true, + "requires": { + "is-obj": "^1.0.0" + } + }, + "electron-to-chromium": { + "version": "1.3.45", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz", + "integrity": "sha1-RYrBscXHYM6IEaFtK/vZfsMLr7g=", + "dev": true + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=", + "dev": true + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "esprima": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz", + "integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "execall": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz", + "integrity": "sha1-c9CQTjlbPKsGWLCNCewlMH8pu3M=", + "dev": true, + "requires": { + "clone-regexp": "^1.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, + "requires": { + "fill-range": "^2.1.0" + }, + "dependencies": { + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "dev": true, + "requires": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + } + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, + "fast-glob": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.1.tgz", + "integrity": "sha512-wSyW1TBK3ia5V+te0rGPXudeMHoUQW6O5Y9oATiaGhpENmEifPDlOdhpsnlj5HoG6ttIvGiY1DdCmI9X2xGMhg==", + "dev": true, + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.1", + "micromatch": "^3.1.10" + }, + "dependencies": { + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true + }, + "file-entry-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", + "dev": true, + "requires": { + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "flat-cache": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", + "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "dev": true, + "requires": { + "circular-json": "^0.3.1", + "del": "^2.0.2", + "graceful-fs": "^4.1.2", + "write": "^0.2.1" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "get-stdin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", + "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "^2.0.0" + } + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "dev": true + }, + "globals": { + "version": "11.5.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.5.0.tgz", + "integrity": "sha512-hYyf+kI8dm3nORsiiXUQigOU62hDLfJ9G01uyGMxhc6BKsircrUhC4uJPQPUSuq2GrTmiiEt7ewxlMdBewfmKQ==", + "dev": true + }, + "globby": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz", + "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + } + }, + "globjoin": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", + "dev": true + }, + "gonzales-pe": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.2.3.tgz", + "integrity": "sha512-Kjhohco0esHQnOiqqdJeNz/5fyPkOMD/d6XVjwTAoPGUFh0mCollPUTUTa2OZy4dYNAqlPIQdTiNzJTWdd9Htw==", + "dev": true, + "requires": { + "minimist": "1.1.x" + }, + "dependencies": { + "minimist": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz", + "integrity": "sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hosted-git-info": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz", + "integrity": "sha512-lIbgIIQA3lz5XaB6vxakj6sDHADJiZadYEJB+FgA+C4nubM1NwcuvUr9EJPmnH1skZqpqUzWborWo8EIUi0Sdw==", + "dev": true + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=", + "dev": true + }, + "htmlparser2": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", + "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "dev": true, + "requires": { + "domelementtype": "^1.3.0", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" + } + }, + "ignore": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.8.tgz", + "integrity": "sha512-pUh+xUQQhQzevjRHHFqqcTy0/dP/kS9I8HSrUydhihjuD09W6ldVWFtIrwhXdUJHis3i2rZNqEHpZH/cbinFbg==", + "dev": true + }, + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", + "dev": true + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-alphabetical": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.2.tgz", + "integrity": "sha512-V0xN4BYezDHcBSKb1QHUFMlR4as/XEuCZBzMJUU4n7+Cbt33SmUnSol+pnXFvLxSHNq2CemUXNdaXV6Flg7+xg==", + "dev": true + }, + "is-alphanumeric": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", + "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=", + "dev": true + }, + "is-alphanumerical": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz", + "integrity": "sha512-pyfU/0kHdISIgslFfZN9nfY1Gk3MquQgUm1mJTjdkEPpkAKNWuBTSqFwewOpR7N351VkErCiyV71zX7mlQQqsg==", + "dev": true, + "requires": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true, + "requires": { + "builtin-modules": "^1.0.0" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-decimal": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.2.tgz", + "integrity": "sha512-TRzl7mOCchnhchN+f3ICUCzYvL9ul7R+TYOsZ8xia++knyZAJfv/uA1FvQXsAnYIl1T3B2X5E/J7Wb1QXiIBXg==", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + }, + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, + "requires": { + "is-primitive": "^2.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-hexadecimal": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz", + "integrity": "sha512-but/G3sapV3MNyqiDBLrOi4x8uCIw0RY3o/Vb5GT0sMFHrVV7731wFSVy41T5FO1og7G0gXLJh0MkgPRouko/A==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + }, + "is-odd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", + "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", + "dev": true, + "requires": { + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "dev": true + }, + "is-path-in-cwd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "dev": true, + "requires": { + "is-path-inside": "^1.0.0" + } + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "dev": true + }, + "is-supported-regexp-flag": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz", + "integrity": "sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==", + "dev": true + }, + "is-whitespace-character": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.2.tgz", + "integrity": "sha512-SzM+T5GKUCtLhlHFKt2SDAX2RFzfS6joT91F2/WSi9LxgFdsnhfPK/UIA+JhRR2xuyLdrCys2PiFDrtn1fU5hQ==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-word-character": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.2.tgz", + "integrity": "sha512-T3FlsX8rCHAH8e7RE7PfOPZVFQlcV3XRF9eOOBQ1uf70OxO7CjjSOjeImMPCADBdYWcStAbVbYvJ1m2D3tb+EA==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "js-base64": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.3.tgz", + "integrity": "sha512-H7ErYLM34CvDMto3GbD6xD0JLUGYXR3QTcH6B/tr4Hi/QpSThnCsIp+Sy5FRTw3B0d6py4HcNkW7nO/wdtGWEw==", + "dev": true + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "js-yaml": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz", + "integrity": "sha512-saJstZWv7oNeOyBh3+Dx1qWzhW0+e6/8eDzo7p5rDFqxntSztloLtuKu+Ejhtq82jsilwOIZYsCz+lIjthg1Hw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz", + "integrity": "sha1-5CGiqOINawgZ3yiQj3glJrlt0f4=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + }, + "known-css-properties": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.6.1.tgz", + "integrity": "sha512-nQRpMcHm1cQ6gmztdvLcIvxocznSMqH/y6XtERrWrHaymOYdDGroRqetJvJycxGEr1aakXiigDgn7JnzuXlk6A==", + "dev": true + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dev": true, + "requires": { + "chalk": "^2.0.1" + } + }, + "longest-streak": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.2.tgz", + "integrity": "sha512-TmYTeEYxiAmSVdpbnQDXGtvYOIRsCMg89CVZzwzc2o7GFL1CjoiRPjH5ec0NFAVlAx3fVof9dX/t6KKRAo2OWA==", + "dev": true + }, + "loose-envify": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", + "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", + "dev": true, + "requires": { + "js-tokens": "^3.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz", + "integrity": "sha1-plzSkIepJZi4eRJXpSPgISIqwfk=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "markdown-escapes": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.2.tgz", + "integrity": "sha512-lbRZ2mE3Q9RtLjxZBZ9+IMl68DKIXaVAhwvwn9pmjnPLS0h/6kyBMgNhqi1xFJ/2yv6cSyv0jbiZavZv93JkkA==", + "dev": true + }, + "markdown-table": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.2.tgz", + "integrity": "sha512-NcWuJFHDA8V3wkDgR/j4+gZx+YQwstPgfQDV8ndUeWWzta3dnDTBxpVzqS9lkmJAuV5YX35lmyojl6HO5JXAgw==", + "dev": true + }, + "math-random": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", + "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=", + "dev": true + }, + "mathml-tag-names": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.0.tgz", + "integrity": "sha512-3Zs9P/0zzwTob2pdgT0CHZuMbnSUSp8MB1bddfm+HDmnFWHGT4jvEZRf+2RuPoa+cjdn/z25SEt5gFTqdhvJAg==", + "dev": true + }, + "mdast-util-compact": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.1.tgz", + "integrity": "sha1-zbX4TitqLTEU3zO9BdnLMuPECDo=", + "dev": true, + "requires": { + "unist-util-modify-children": "^1.0.0", + "unist-util-visit": "^1.1.0" + } + }, + "meow": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-4.0.1.tgz", + "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "dev": true, + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "merge2": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz", + "integrity": "sha512-bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg==", + "dev": true + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1" + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "^0.1.0" + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "minimist-options": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz", + "integrity": "sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0" + } + }, + "mixin-deep": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", + "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "nanomatch": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", + "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-odd": "^2.0.0", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-selector": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", + "integrity": "sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=", + "dev": true + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz", + "integrity": "sha512-Y/OtIaXtUPr4/YpMv1pCL5L5ed0rumAaAeBSj12F+bSlMdys7i8oQF/GUJmfpTS/QoaRrS/k6pma29haJpsMng==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "parse-entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.1.2.tgz", + "integrity": "sha512-5N9lmQ7tmxfXf+hO3X6KRG6w7uYO/HL9fHalSySTdyn63C3WNvTM/1R8tn1u1larNcEbo3Slcy2bsVDQqvEpUg==", + "dev": true, + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + } + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "6.0.22", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz", + "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "postcss-html": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-0.18.0.tgz", + "integrity": "sha512-7llFZ5hlINmUu/8iUBIXCTZ4OMyGB+NBeb7jDadXrH9g+hpcUEBhZv3rjqesmOsHNC3bITqx1EkVz77RuHJygw==", + "dev": true, + "requires": { + "@babel/core": "^7.0.0-beta.42", + "@babel/traverse": "^7.0.0-beta.42", + "babylon": "^7.0.0-beta.42", + "htmlparser2": "^3.9.2", + "remark": "^9.0.0", + "unist-util-find-all-after": "^1.0.1" + } + }, + "postcss-less": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/postcss-less/-/postcss-less-1.1.5.tgz", + "integrity": "sha512-QQIiIqgEjNnquc0d4b6HDOSFZxbFQoy4MPpli2lSLpKhMyBkKwwca2HFqu4xzxlKID/F2fxSOowwtKpgczhF7A==", + "dev": true, + "requires": { + "postcss": "^5.2.16" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "postcss-media-query-parser": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=", + "dev": true + }, + "postcss-reporter": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-5.0.0.tgz", + "integrity": "sha512-rBkDbaHAu5uywbCR2XE8a25tats3xSOsGNx6mppK6Q9kSFGKc/FyAzfci+fWM2l+K402p1D0pNcfDGxeje5IKg==", + "dev": true, + "requires": { + "chalk": "^2.0.1", + "lodash": "^4.17.4", + "log-symbols": "^2.0.0", + "postcss": "^6.0.8" + } + }, + "postcss-resolve-nested-selector": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=", + "dev": true + }, + "postcss-safe-parser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-3.0.1.tgz", + "integrity": "sha1-t1Pv9sfArqXoN1++TN6L+QY/8UI=", + "dev": true, + "requires": { + "postcss": "^6.0.6" + } + }, + "postcss-sass": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.3.1.tgz", + "integrity": "sha512-jyrOsP3MoLv57avdbi7GEITKrM23qeoFzZi8zmbXPjcPklRt83zzoxF/CEZ/cwRAJsHSkEwHc28Qhkm+8/OoUA==", + "dev": true, + "requires": { + "gonzales-pe": "4.2.3", + "postcss": "6.0.22" + } + }, + "postcss-scss": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-1.0.5.tgz", + "integrity": "sha512-gJB1tKYMkBy0MU+COt6WXA4ZiRctAKoWLa6qD7a6bbEbBMqrpa/BhfQdN80eYMV+JkKddZVEpZlOggnGShpvyg==", + "dev": true, + "requires": { + "postcss": "^6.0.21" + } + }, + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", + "dev": true, + "requires": { + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "postcss-sorting": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-3.1.0.tgz", + "integrity": "sha512-YCPTcJwGIInF1LpMD1lIYvMHTGUL4s97o/OraA6eKvoauhhk6vjwOWDDjm6uRKqug/kyDPMKEzmYZ6FtW6RDgw==", + "dev": true, + "requires": { + "lodash": "^4.17.4", + "postcss": "^6.0.13" + } + }, + "postcss-value-parser": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", + "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=", + "dev": true + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "punycode": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", + "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=", + "dev": true + }, + "quick-lru": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz", + "integrity": "sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=", + "dev": true + }, + "randomatic": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz", + "integrity": "sha512-VdxFOIEY3mNO5PtSRkkle/hPJDHvQhK21oa73K4yAc9qmp6N429gAyF1gZMOTMeS0/AYzaV/2Trcef+NaIonSA==", + "dev": true, + "requires": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "read-pkg-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "redent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz", + "integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=", + "dev": true, + "requires": { + "indent-string": "^3.0.0", + "strip-indent": "^2.0.0" + } + }, + "regex-cache": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", + "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", + "dev": true, + "requires": { + "is-equal-shallow": "^0.1.3" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "remark": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark/-/remark-9.0.0.tgz", + "integrity": "sha512-amw8rGdD5lHbMEakiEsllmkdBP+/KpjW/PRK6NSGPZKCQowh0BT4IWXDAkRMyG3SB9dKPXWMviFjNusXzXNn3A==", + "dev": true, + "requires": { + "remark-parse": "^5.0.0", + "remark-stringify": "^5.0.0", + "unified": "^6.0.0" + } + }, + "remark-parse": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz", + "integrity": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==", + "dev": true, + "requires": { + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^1.1.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^1.0.0", + "vfile-location": "^2.0.0", + "xtend": "^4.0.1" + } + }, + "remark-stringify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-5.0.0.tgz", + "integrity": "sha512-Ws5MdA69ftqQ/yhRF9XhVV29mhxbfGhbz0Rx5bQH+oJcNhhSM6nCu1EpLod+DjrFGrU0BMPs+czVmJZU7xiS7w==", + "dev": true, + "requires": { + "ccount": "^1.0.0", + "is-alphanumeric": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "longest-streak": "^2.0.1", + "markdown-escapes": "^1.0.0", + "markdown-table": "^1.1.0", + "mdast-util-compact": "^1.0.0", + "parse-entities": "^1.0.2", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "stringify-entities": "^1.0.1", + "unherit": "^1.0.4", + "xtend": "^4.0.1" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "resolve": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "dev": true, + "requires": { + "path-parse": "^1.0.5" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "requires": { + "glob": "^7.0.5" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true + }, + "set-value": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", + "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, + "slice-ansi": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", + "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz", + "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==", + "dev": true, + "requires": { + "atob": "^2.0.0", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "spdx-correct": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz", + "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz", + "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz", + "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==", + "dev": true + }, + "specificity": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.3.2.tgz", + "integrity": "sha512-Nc/QN/A425Qog7j9aHmwOrlwX2e7pNI47ciwxwy4jOlvbbMHkNNJchit+FX+UjF3IAdiaaV5BKeWuDUnws6G1A==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "state-toggle": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.1.tgz", + "integrity": "sha512-Qe8QntFrrpWTnHwvwj2FZTgv+PKIsp0B9VxLzLLbSpPXWOgRgc5LVj/aTiSfK1RqIeF9jeC1UeOH8Q8y60A7og==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "stringify-entities": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz", + "integrity": "sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==", + "dev": true, + "requires": { + "character-entities-html4": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "strip-indent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz", + "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", + "dev": true + }, + "style-search": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=", + "dev": true + }, + "stylelint": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-9.2.0.tgz", + "integrity": "sha512-aBlnuLyTvyNfIVoc+reaqx88aW41Awc9Ccu7ZXrO2fnSvv0MVSQeyL3ci/nD1H1eYvH3X+MXTwMYC3Mf5+2Ckw==", + "dev": true, + "requires": { + "autoprefixer": "^8.0.0", + "balanced-match": "^1.0.0", + "chalk": "^2.0.1", + "cosmiconfig": "^4.0.0", + "debug": "^3.0.0", + "execall": "^1.0.0", + "file-entry-cache": "^2.0.0", + "get-stdin": "^6.0.0", + "globby": "^8.0.0", + "globjoin": "^0.1.4", + "html-tags": "^2.0.0", + "ignore": "^3.3.3", + "import-lazy": "^3.1.0", + "imurmurhash": "^0.1.4", + "known-css-properties": "^0.6.0", + "lodash": "^4.17.4", + "log-symbols": "^2.0.0", + "mathml-tag-names": "^2.0.1", + "meow": "^4.0.0", + "micromatch": "^2.3.11", + "normalize-selector": "^0.2.0", + "pify": "^3.0.0", + "postcss": "^6.0.16", + "postcss-html": "^0.18.0", + "postcss-less": "^1.1.5", + "postcss-media-query-parser": "^0.2.3", + "postcss-reporter": "^5.0.0", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-safe-parser": "^3.0.1", + "postcss-sass": "^0.3.0", + "postcss-scss": "^1.0.2", + "postcss-selector-parser": "^3.1.0", + "postcss-value-parser": "^3.3.0", + "resolve-from": "^4.0.0", + "signal-exit": "^3.0.2", + "specificity": "^0.3.1", + "string-width": "^2.1.0", + "style-search": "^0.1.0", + "sugarss": "^1.0.0", + "svg-tags": "^1.0.0", + "table": "^4.0.1" + } + }, + "stylelint-order": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-0.8.1.tgz", + "integrity": "sha512-8mp1P2wnI9XShYXVXDsxVigE2eXnc0C2O4ktbwUvTBwjCP4xZskIbUVxp1evSG3OK4R7hXVNl/2BnJCZkrcc/w==", + "dev": true, + "requires": { + "lodash": "^4.17.4", + "postcss": "^6.0.14", + "postcss-sorting": "^3.1.0" + } + }, + "sugarss": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-1.0.1.tgz", + "integrity": "sha512-3qgLZytikQQEVn1/FrhY7B68gPUUGY3R1Q1vTiD5xT+Ti1DP/8iZuwFet9ONs5+bmL8pZoDQ6JrQHVgrNlK6mA==", + "dev": true, + "requires": { + "postcss": "^6.0.14" + } + }, + "supports-color": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", + "dev": true + }, + "table": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/table/-/table-4.0.3.tgz", + "integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==", + "dev": true, + "requires": { + "ajv": "^6.0.1", + "ajv-keywords": "^3.0.0", + "chalk": "^2.1.0", + "lodash": "^4.17.4", + "slice-ansi": "1.0.0", + "string-width": "^2.1.1" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", + "dev": true + }, + "trim-newlines": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz", + "integrity": "sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=", + "dev": true + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true + }, + "trim-trailing-lines": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz", + "integrity": "sha512-bWLv9BbWbbd7mlqqs2oQYnLD/U/ZqeJeJwbO0FG2zA1aTq+HTvxfHNKFa/HGCVyJpDiioUYaBhfiT6rgk+l4mg==", + "dev": true + }, + "trough": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.2.tgz", + "integrity": "sha512-FHkoUZvG6Egrv9XZAyYGKEyb1JMsFphgPjoczkZC2y6W93U1jswcVURB8MUvtsahEPEVACyxD47JAL63vF4JsQ==", + "dev": true + }, + "unherit": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.1.tgz", + "integrity": "sha512-+XZuV691Cn4zHsK0vkKYwBEwB74T3IZIcxrgn2E4rKwTfFyI1zCh7X7grwh9Re08fdPlarIdyWgI8aVB3F5A5g==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "xtend": "^4.0.1" + } + }, + "unified": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz", + "integrity": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==", + "dev": true, + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^1.1.0", + "trough": "^1.0.0", + "vfile": "^2.0.0", + "x-is-string": "^0.1.0" + } + }, + "union-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", + "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^0.4.3" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "set-value": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", + "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.1", + "to-object-path": "^0.3.0" + } + } + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "unist-util-find-all-after": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-1.0.2.tgz", + "integrity": "sha512-nDl79mKpffXojLpCimVXnxhlH/jjaTnDuScznU9J4jjsaUtBdDbxmlc109XtcqxY4SDO0SwzngsxxW8DIISt1w==", + "dev": true, + "requires": { + "unist-util-is": "^2.0.0" + } + }, + "unist-util-is": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.2.tgz", + "integrity": "sha512-YkXBK/H9raAmG7KXck+UUpnKiNmUdB+aBGrknfQ4EreE1banuzrKABx3jP6Z5Z3fMSPMQQmeXBlKpCbMwBkxVw==", + "dev": true + }, + "unist-util-modify-children": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-1.1.2.tgz", + "integrity": "sha512-GRi04yhng1WqBf5RBzPkOtWAadcZS2gvuOgNn/cyJBYNxtTuyYqTKN0eg4rC1YJwGnzrqfRB3dSKm8cNCjNirg==", + "dev": true, + "requires": { + "array-iterate": "^1.0.0" + } + }, + "unist-util-remove-position": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz", + "integrity": "sha512-XxoNOBvq1WXRKXxgnSYbtCF76TJrRoe5++pD4cCBsssSiWSnPEktyFrFLE8LTk3JW5mt9hB0Sk5zn4x/JeWY7Q==", + "dev": true, + "requires": { + "unist-util-visit": "^1.1.0" + } + }, + "unist-util-stringify-position": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz", + "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==", + "dev": true + }, + "unist-util-visit": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.1.tgz", + "integrity": "sha512-0fdB9EQJU0tho5tK0VzOJzAQpPv2LyLZ030b10GxuzAWEfvd54mpY7BMjQ1L69k2YNvL+SvxRzH0yUIehOO8aA==", + "dev": true, + "requires": { + "unist-util-is": "^2.1.1" + } + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "uri-js": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.1.tgz", + "integrity": "sha512-jpKCA3HjsBfSDOEgxRDAxQCNyHfCPSbq57PqCkd3gAyBuPb3IWxw54EHncqESznIdqSetHfw3D7ylThu2Kcc9A==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "use": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz", + "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz", + "integrity": "sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vfile": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz", + "integrity": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==", + "dev": true, + "requires": { + "is-buffer": "^1.1.4", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "^1.0.0", + "vfile-message": "^1.0.0" + } + }, + "vfile-location": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.3.tgz", + "integrity": "sha512-zM5/l4lfw1CBoPx3Jimxoc5RNDAHHpk6AM6LM0pTIkm5SUSsx8ZekZ0PVdf0WEZ7kjlhSt7ZlqbRL6Cd6dBs6A==", + "dev": true + }, + "vfile-message": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.0.1.tgz", + "integrity": "sha512-vSGCkhNvJzO6VcWC6AlJW4NtYOVtS+RgCaqFIYUjoGIlHnFL+i0LbtYvonDWOMcB97uTPT4PRsyYY7REWC9vug==", + "dev": true, + "requires": { + "unist-util-stringify-position": "^1.1.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "x-is-string": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz", + "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } +} diff --git a/themes/mainroad/package.json b/themes/mainroad/package.json new file mode 100644 index 0000000..97c5ab0 --- /dev/null +++ b/themes/mainroad/package.json @@ -0,0 +1,24 @@ +{ + "name": "mainroad", + "version": "1.0.0", + "description": "Responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme", + "license": "GPL-2.0", + "dependencies": {}, + "devDependencies": { + "stylelint": "^9.2.0", + "stylelint-order": "^0.8.1" + }, + "scripts": { + "lint:css": "stylelint static/css/*.css", + "lint": "npm run lint:css", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Vimux/Mainroad.git" + }, + "bugs": { + "url": "https://github.com/Vimux/Mainroad/issues" + }, + "homepage": "https://github.com/Vimux/Mainroad" +} diff --git a/themes/mainroad/static/apple-touch-icon.png b/themes/mainroad/static/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..23a17ab4bcc1c5e837b2fc8c9cf7abdf7da04ce5 GIT binary patch literal 447 zcmeAS@N?(olHy`uVBq!ia0vp^TR@nD4M^IaWitX&oCO|{#S9GGLLkg|>2BR01_s7L zPZ!6Kid%25Y~*B65OH=CJudKObN$P_U9Cr-=e2zB@Gp`UG4yFz;CMkHL%^ho&9NEG zWZ{J}Ii#RWK@%ub8K@4-bOUPvGJC0_n?s5cyQ!f2;o{0~o0#Mv9>(oUxJ}rCYsx1E YUK8efC7DYlfic41>FVdQ&MBb@079jG*Z=?k literal 0 HcmV?d00001 diff --git a/themes/mainroad/static/css/style.css b/themes/mainroad/static/css/style.css new file mode 100644 index 0000000..1e60220 --- /dev/null +++ b/themes/mainroad/static/css/style.css @@ -0,0 +1,1158 @@ +*, +*::before, +*::after { + box-sizing: border-box; +} + +article, +aside, +dialog, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section { + display: block; +} + +:focus::-webkit-input-placeholder { + color: transparent; +} + +:focus::-moz-placeholder { + color: transparent; +} + +:focus:-moz-placeholder { + color: transparent; +} + +:focus:-ms-input-placeholder { + color: transparent; +} + +/* Structure */ +html { + font-size: 100%; + -ms-text-size-adjust: none; + -webkit-text-size-adjust: none; +} + +body { + margin: 0; + font-family: "Open Sans", Helvetica, Arial, sans-serif; + font-size: 14px; + font-size: .875rem; + line-height: 1.6; + word-wrap: break-word; + background: #f7f7f7; + -webkit-font-smoothing: antialiased; +} + +.body-right-sidebar .main { + float: left; + margin-right: 2.5%; +} + +.body-left-sidebar .main { + float: right; + margin-left: 2.5%; +} + +.container, +.container-inner { + position: relative; + width: 100%; + max-width: 1080px; + margin: 0 auto; +} + +.container-outer { + margin: 25px auto; + box-shadow: 0 0 10px rgba(50, 50, 50, .17); +} + +.wrapper { + padding: 25px; + background: #fff; +} + +.content { + width: 65.83%; + overflow: hidden; +} + +.sidebar { + float: left; + width: 31.66%; +} + +.clearfix { + display: block; +} + +.clearfix::after { + display: block; + height: 0; + padding: 0; + margin: 0; + clear: both; + line-height: 0; + visibility: hidden; + content: ""; +} + +/* Button */ +.btn { + padding: 5px 10px; + font-weight: 700; + color: #fff; + white-space: pre-line; + background: #2a2a2a; +} + +.btn:hover { + color: #fff; + background: #e64946; +} + +/* Animation */ +.menu__item, +.btn { + -webkit-transition: background-color .25s ease-out; + -moz-transition: background-color .25s ease-out; + transition: background-color .25s ease-out; +} + +/* Typography */ +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0 0 20px; + margin: 0 0 1.25rem; + font-weight: 700; + line-height: 1.3; + color: #000; +} + +h1 { + font-size: 32px; + font-size: 2rem; +} + +h2 { + font-size: 24px; + font-size: 1.5rem; +} + +h3 { + font-size: 20px; + font-size: 1.25rem; +} + +h4 { + font-size: 18px; + font-size: 1.125rem; +} + +h5 { + font-size: 16px; + font-size: 1rem; +} + +h6 { + font-size: 16px; + font-size: 1rem; +} + +a { + color: #000; + text-decoration: none; +} + +a:hover { + color: #e64946; +} + +hr { + margin: 0 0 20px; + border: 0; + border-top: 1px solid #dadada; +} + +p { + margin: 0 0 20px; + margin: 0 0 1.25rem; +} + +b, +strong { + font: inherit; + font-weight: 700; +} + +i, +em { + font: inherit; + font-style: italic; +} + +ol, +ul { + padding: 0; + margin: 0; +} + +small { + font-size: 12px; + font-size: .75rem; +} + +mark { + background-color: #fd5; +} + +figure { + margin: 0 0 20px; + margin: 0 0 1.25rem; +} + +figcaption { + color: #999; +} + +pre, +code, +kbd, +samp { + font-family: "Consolas", Courier New, Courier, monospace; + font-size: inherit; +} + +pre, +code { + background-color: #f5f5f5; + border: 1px solid #ebebeb; +} + +code { + padding: 0 5px; + color: #c33; + white-space: nowrap; + white-space: -o-nowrap; + white-space: -moz-nowrap; + white-space: -webkit-nowrap; +} + +pre { + display: block; + padding: 0; + padding: 1.25rem; + margin-bottom: 20px; + margin-bottom: 1.25rem; + color: #000; + white-space: pre-wrap; + white-space: -o-pre-wrap; + white-space: -moz-pre-wrap; + white-space: -webkit-pre-wrap; +} + +pre code { + padding: 0; + color: inherit; + white-space: inherit; + background: inherit; + border: 0; +} + +kbd { + padding: 2px 3px; + color: #fff; + background-color: #2a2a2a; +} + +blockquote { + display: block; + padding: 5px 0 5px 15px; + margin: 0 0 20px; + margin: 0 0 1.25rem; + line-height: 1.6; + border-left: 5px solid #e64946; +} + +blockquote p:last-child { + margin: 0; +} + +blockquote footer { + text-align: right; +} + +sup, +sub { + font-size: 10px; + font-size: .625rem; + font-style: normal; +} + +sup { + vertical-align: super; +} + +sub { + vertical-align: sub; +} + +abbr[title] { + text-decoration: none; + cursor: help; + border-bottom: 1px dotted #000; +} + +q { + font-style: italic; +} + +address { + margin-bottom: 20px; + margin-bottom: 1.25rem; + font-family: "Consolas", Courier New, Courier, monospace; + line-height: 1.5; +} + +dl { + margin: 0 0 10px 20px; +} + +dt, +dd { + display: list-item; +} + +dt { + font-weight: bold; + list-style-type: square; +} + +dd { + margin-left: 20px; + list-style-type: circle; +} + +select { + max-width: 100%; +} + +.warning { + padding: 20px 10px; + text-align: center; + border: 1px solid #ddd; +} + +.warning__icon { + margin-bottom: 20px; +} + +/* Header */ +.header { + background: #fff; +} + +.logo { + padding: 25px; +} + +.logo__link { + display: inline-block; + text-transform: uppercase; +} + +.logo__title { + font-size: 32px; + font-size: 2rem; + font-weight: 700; + line-height: 1; + color: #000; +} + +.logo__tagline { + display: inline-block; + padding-top: 10px; + margin-top: 10px; + font-size: 14px; + font-size: .875rem; + font-weight: 700; + line-height: 1; + color: #e64946; + border-top: 1px solid #ebebeb; +} + +.divider { + height: 5px; + margin: 0; + background: #e64946; + border: 0; +} + +/* Navigation — Responsive-nav.js */ +.menu { + position: relative; + width: 100%; + margin: 0 auto; + text-transform: uppercase; + background: #2a2a2a; +} + +.menu__toggle { + display: block; + padding: 10px 15px; + font-weight: 700; + color: #fff; + text-align: right; + text-transform: uppercase; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + background: #2a2a2a; + -webkit-tap-highlight-color: #000; + -webkit-touch-callout: none; +} + +.menu__list { + display: block; + width: 100%; + padding: 0; + margin: 0; + list-style: none; +} + +.menu__link { + display: block; + padding: 10px 15px; + font-weight: 700; + color: #fff; +} + +.menu__link:hover { + color: #fff; +} + +.js .menu--collapse { + position: absolute; + display: block; + max-height: 0; + overflow: hidden; + zoom: 1; +} + +.menu--collapse.opened { + max-height: 9999px; +} + +.opened.menu__list { + border-top: 1px solid #e64946; +} + +.menu__item:hover { + background: #e64946; +} + +.menu__item--active { + background: #e64946; +} + +.menu__item:first-child { + border: none; +} + +@media screen and (min-width: 767px) { + .js .menu { + position: relative; + } + + .js .menu.closed { + max-height: none; + } + + .menu__toggle { + display: none; + } + + .menu { + min-height: 42px; + border-bottom: 5px solid #e64946; + } + + .menu__item { + position: relative; + float: left; + } + + .menu__link { + border-left: 1px solid rgba(255, 255, 255, .1); + } +} + +/* Posts/Pages */ +.post__header, +.page-header { + margin-bottom: 20px; + margin-bottom: 1.25rem; +} + +.page-header__title { + font-size: 28px; + font-size: 1.75rem; +} + +.page-content { + margin-bottom: 20px; + margin-bottom: 1.25rem; +} + +.meta { + font-size: 13px; + font-size: .8125rem; + vertical-align: baseline; +} + +.meta, +.meta a { + color: #999; +} + +.meta a:hover { + color: #e64946; +} + +.meta .icon { + margin-right: 5px; +} + +.icon-time, +.icon-category { + vertical-align: middle; + fill: #c4c4c4; +} + +.meta-categories__list, +.meta-date, +.meta-lastmod { + vertical-align: middle; +} + +.meta-categories { + margin-left: 15px; +} + +.post__title { + margin: 0; +} + +.post__meta { + padding: 5px 0; + margin-top: 10px; + margin-top: .625rem; + border-top: 1px dotted #ebebeb; + border-bottom: 1px dotted #ebebeb; +} + +.post__thumbnail { + max-width: 1030px; + margin: 0 0 20px; + margin-bottom: 0 0 1.25rem; +} + +.post__thumbnail img { + width: 100%; +} + +.post__content a, +.warning a { + font-weight: 700; + color: #e64946; +} + +.post__content a:hover, +.warning a:hover { + color: #e64946; + text-decoration: underline; +} + +.post__content .alignnone { + display: block; + margin: 20px 0; + margin: 1.25rem 0; +} + +.post__content .aligncenter { + display: block; + margin: 20px auto; + margin: 1.25rem auto; +} + +.post__content .alignleft { + display: inline; + float: left; + margin: 5px 20px 20px 0; + margin: .3125rem 1.25rem 1.25rem 0; +} + +.post__content .alignright { + display: inline; + float: right; + margin: 5px 0 20px 20px; + margin: .3125rem 0 1.25rem 1.25rem; +} + +.post__content ul { + list-style: square; +} + +.post__content ol { + list-style: decimal; +} + +.post__content ul, +.post__content ol { + margin: 0 0 20px 40px; +} + +.post__content ul ul, +.post__content ol ol { + margin: 0 0 0 40px; +} + +.post__content li { + margin-bottom: 5px; +} + +.tags { + margin-bottom: 20px; + margin-bottom: 1.25rem; + font-size: 12px; + font-size: .75rem; + line-height: 1; + color: #fff; +} + +.tags__list { + list-style: none; +} + +.tags__item { + float: left; + margin: 0 6px 6px 0; + margin: 0 .375rem .375rem 0; + text-transform: uppercase; + background: #2a2a2a; +} + +.tags__item:hover { + background: #e64946; +} + +.tags__link, +.tags__link:hover { + display: block; + padding: 10px 15px; +} + +.icon-tag { + float: left; + width: 32px; + height: 32px; + padding: 8px; + margin-right: 6px; + background: #e64946; + fill: #fff; +} + +/* Table of Contents */ +.toc { + margin-bottom: 20px; + font-weight: 700; + color: #7a8288; + background: #fff; + border-color: #ebebeb; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 0; + border-left-width: 1px; +} + +.toc__title { + padding: 5px 10px; + color: #fff; + text-transform: uppercase; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + background: #2a2a2a; +} + +.toc__menu ul { + margin: 0; + list-style: none; +} + +.toc__menu ul ul ul a { + padding-left: 25px; +} + +.toc__menu ul ul ul ul a { + padding-left: 45px; +} + +.toc__menu ul ul ul ul ul a { + padding-left: 65px; +} + +.toc__menu ul ul ul ul ul ul a { + padding-left: 85px; +} + +.toc__menu li { + margin: 0; +} + +.toc__menu a { + display: block; + padding: 5px 10px; + color: #e64946; + border-bottom: 1px solid #ebebeb; +} + +.toc__menu a:hover { + text-decoration: underline; +} + +/* Author Box */ +.authorbox { + padding: 25px 0; + margin-bottom: 25px; + line-height: 1.5; + border-top: 1px solid #ebebeb; + border-bottom: 1px solid #ebebeb; +} + +.authorbox__avatar { + float: left; + padding: 3px; + margin: 0 25px 0 0; + border: 1px solid #ebebeb; +} + +.authorbox__header { + margin-bottom: 10px; +} + +.authorbox__name { + font-size: 16px; + font-size: 1rem; + font-weight: 700; +} + +/* List content */ +.list__item { + padding-bottom: 20px; + padding-bottom: 1.25rem; + margin-bottom: 20px; + margin-bottom: 1.25rem; + border-bottom: 1px solid #ebebeb; +} + +.list__header { + margin-bottom: 10px; + margin-bottom: .625rem; +} + +.list__meta { + margin-top: 5px; +} + +.list__thumbnail { + float: left; + margin: 0 20px 0 0; +} + +.list__thumbnail img { + width: 100%; + max-width: 235px; +} + +.list__footer-readmore { + float: right; + margin-top: 10px; +} + +/* Pagination */ +.pagination { + margin-top: 20px; +} + +.pagination__item { + display: inline-block; + padding: 10px 15px; + font-weight: 700; + color: #000; + background: #f5f5f5; +} + +.pagination__item:hover, +.pagination__item--current { + color: #fff; + background: #e64946; +} + +/* Post Navigation */ +.post-nav { + padding-top: 25px; + padding-bottom: 25px; + margin-bottom: 25px; + border-bottom: 1px solid #ebebeb; +} + +.post-nav__caption { + display: block; + margin-bottom: 5px; + overflow: hidden; + font-weight: 700; + line-height: 1; + text-transform: uppercase; +} + +.post-nav__post-title { + margin-bottom: 0; + overflow: hidden; + font-size: 13px; + font-size: .8125rem; +} + +.post-nav__item--next { + float: right; + text-align: right; +} + +.post-nav__link { + display: block; +} + +/* Images / Video */ +img { + width: auto\9; /* ie8 */ + max-width: 100%; + height: auto; + vertical-align: bottom; +} + +iframe, +embed, +object, +video { + max-width: 100%; +} + +/* Table */ +table { + width: 100%; + margin-bottom: 20px; + margin-bottom: 1.25rem; + border-spacing: 0; + border-collapse: collapse; + border-top: 1px solid #ebebeb; + border-left: 1px solid #ebebeb; +} + +td, +th { + padding: 5px 10px; + border-right: 1px solid #ebebeb; + border-bottom: 1px solid #ebebeb; +} + +th { + font-weight: 700; +} + +/* Forms */ +input { + padding: 5px; + font-size: 12px; + vertical-align: middle; + background: #f5f5f5; + border: 1px solid #ebebeb; + -webkit-transition: all .25s ease-in-out; + -moz-transition: all .25s ease-in-out; + transition: all .25s ease-in-out; +} + +input[type=text], +input[type=email], +input[type=tel], +input[type=url] { + width: 60%; +} + +input[type=text]:hover, +input[type=email]:hover, +input[type=tel]:hover, +input[type=url]:hover, +textarea:hover { + border: 1px solid #e64946; +} + +input[type=submit] { + display: inline-block; + min-width: 150px; + padding: 10px 15px; + font-weight: 700; + color: #fff; + text-transform: uppercase; + cursor: pointer; + background: #e64946; + border: 0; + -webkit-transition: all .1s linear; + -moz-transition: all .1s linear; + transition: all .1s linear; + -webkit-appearance: none; +} + +input[type=submit]:hover { + background: #2a2a2a; +} + +textarea { + width: 96%; + padding: 5px; + line-height: 1.5; + background: #f5f5f5; + border: 1px solid rgba(0, 0, 0, .1); +} + +/* Widgets */ +.widget { + margin-bottom: 25px; + overflow: hidden; +} + +.widget:last-child { + margin-bottom: 0; +} + +.widget__title { + position: relative; + padding-bottom: 5px; + font-size: 16px; + font-size: 1rem; + text-transform: uppercase; + border-bottom: 3px solid #e64946; +} + +.widget__item { + display: block; + padding: 5px 0; + border-bottom: 1px dotted #ebebeb; +} + +.widget__item:first-child { + padding-top: 0; +} + +/* Search widget */ +.widget-search__form { + display: block; + padding: 5%; + margin: 0 auto; + background: #f5f5f5; +} + +.widget-search__form .widget-search__submit { + display: none; +} + +.widget-search__field { + position: relative; + display: block; + width: 90%; + padding: 10px; + margin: 0 auto; + font-size: 11px; + cursor: pointer; + background: #fff; + border: 1px solid #ebebeb; + border-radius: 0; +} + +.widget-search__field:active, +.widget-search__field:focus { + cursor: text; +} + +/* Social widget */ +.widget-social__item { + padding: 0; + border: 0; +} + +.widget-social__link { + display: block; + margin: 0 0 8px; + white-space: normal; +} + +.widget-social__link-icon { + margin: 0 5px 0 0; + vertical-align: middle; +} + +/* Tags Widget */ +.widget-taglist__link { + display: inline-block; + margin: 0 4px 8px 0; + font-size: 12px; + text-transform: uppercase; +} + +/* Footer */ +.footer { + padding: 10px 25px; + font-size: 12px; + font-size: .75rem; + color: #999; + background: #2a2a2a; + border-top: 3px solid #999; +} + +.footer__copyright a { + color: #fff; +} + +.footer__copyright a:hover { + text-decoration: underline; +} + +/*** Media Queries ***/ +@media screen and (max-width: 1475px) { + .container { + width: 95%; + } + + .container-inner { + width: 100%; + } +} + +@media screen and (max-width: 900px) { + .container-outer { + margin: 0 auto; + } + + .container { + width: 100%; + } + + .wrapper, + .logo { + padding: 20px; + } + + .widget { + margin-bottom: 20px; + } + + .footer__copyright { + text-align: center; + } +} + +@media screen and (max-width: 767px) { + .content, + .sidebar, + .body .main { + float: none; + width: 100%; + margin: 0; + } + + .logo { + text-align: center; + } + + .logo__title { + font-size: 24px; + font-size: 1.5rem; + } + + .sidebar { + margin-top: 20px; + } +} + +@media screen and (max-width: 620px) { + input[type=text], + input[type=email], + input[type=tel], + input[type=url] { + width: 88%; + } + + .meta-categories { + display: block; + margin-left: 0; + } + + .authorbox { + text-align: center; + } + + .authorbox__avatar { + display: inline-block; + float: none; + margin: 0 0 20px; + } + + .post-nav__item { + text-align: center; + } + + .post-nav__item--prev { + padding-bottom: 25px; + } + + .post__content ul, + .post__content ol { + margin: 0 0 20px 20px; + } + + .post__content ul ul, + .post__content ol ol { + margin: 0 0 0 20px; + } + + .list__thumbnail { + max-width: 80px; + } + + .list__title { + font-size: 16px; + font-size: 1rem; + } + + .list__meta { + display: block; + font-size: 11px; + font-size: .6875rem; + } +} diff --git a/themes/mainroad/static/favicon.ico b/themes/mainroad/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..247857e9b029667af242267df1a5ccb88b034efc GIT binary patch literal 1350 zcmZQzU}Rus5D;Jj(u@on7#JALfLK8R!Z%=KV0Z@P8yGM+d0k1&U)3Ae}}xca%RG0z)YT0C9d;#sB~S literal 0 HcmV?d00001 diff --git a/themes/mainroad/static/img/avatar.png b/themes/mainroad/static/img/avatar.png new file mode 100644 index 0000000000000000000000000000000000000000..8afac66b8af65bac6da9652eada3ae5e4c218e9b GIT binary patch literal 1139 zcmex=``2_j6xdp@o1cgOJMMZh|#U;cRDJhSy?$nc)58+NCy88 zF$i)nL@`7$Gb%AK2{JMZGX6ipAOmzD6Eh>otuVmI&dSEY!o>Xl76S)F{B?;(r+_NU zgsR-Vs|5oevYfhi?@YSwpXP-{i{}-lh=)C>w7mXF;bgp|d{=m&nq2qf0)s2dJolDikOiVSqd;P zGBYu=0G-Va(F^hviy$kTBD;`dqkyo2Vd6w36{Enyg&Plw6mR;Vs%GF6)btSQLq>as zPcJ^j?|av;*B2}2eKMv(SG4J3#+EQ{*F_tEMB@9f7}06+?IDl0P7JzqBz2y1+LpR6 z+|^BrE4GNXU})$(bRTypK0`|VZbINOe#Jr)qOasDI440+d{H{V%~J}zIiZBp`G zU4uK@6&HSrT&;O6HR_w33UcYCL#ehYlacjQUxE3Hl*m1@K0 z{Fy92%Z%07#gY!b(s;sLdFbPg{=~;S{{4vclwLIPO?7$Pr6|V-)s?=zc@c-4-R8IU ze7-CGbFH}Q$)d=WJ!xr2of+B-hgzPfYIdU@FV?Rv*_ zJDr;!ZWWz8L8-O%_>m7X=em|H{90=4uefKD#opsbW=}mDzwFg({WPvM+dGXmO?hQ2 zzTvy=9>)kiqdVn%eQP)P`tH3i^F~+UNA>Xzhm}hOTz+yCH#@2rEdCXDc+Uflp zKe()3D>`-B*-w)TYz((<-h6#kbgkRQ&3nurRiFP8el?b9-MYFYCc4j*;#AGVY5fd|spblyh9rW>>%8w;_kHhKeb>7G-GA;M&wAE+KF{9!S$nVjto7Z= z@Vh2w1SABG9Xoc$^p>I3v17;af3A~92gk6(R!@!{JFjADsBaTaV@z?PM3LC`O>UH; z0z^OUEc~q4*JG9@`kpN(er2``QZqKcm;U(|Q7Ne`OS?|r&=BN^rDlTu-}Lz|=l5lu z)Vu{Mgt~!F|GHi*5?r^vw#u}|R)yG>Y~8gRX{=P@Ww(=`pz2PYRXiz%dkWXbpA?G| zfEnR`usN#;t|&9%u?cLW+&E@oyOrwFQtx;K1I{vhW22INpIY$5LI=Wo_j!sRM_LMOq;G2j>h5HnQ|{ zJj7M5uH*vW^nJ$7T2r$_y{UyY-0LA}b6qI4^i{MQ$pD z7mP_W$&X&FxSQxucQs6G-SuFuYd+U|*L(esd$<79yLO2j>=|Z{fpYp3cf6nHm!z>{ zp9_yt0A$IOh?thS-x=qi%8~#To(e*wpu1}w1!Bf_?N()3Durs7mY=Z3z)~sW*V%q} zS0Z#(B~ELpm6oJyR;6cWO9i6ze3D9syh7B04oCy-T4o?>(Xg1Ut9ca)41ohs=xQC& z{qAMIfqwCTbPW~=#^Ay;i+3t4WYcD7R5-t1QYPDfKql%nqc~_o-FVmpvaqq2k}%Wo z6Y`4zM~GCuJfL?{ z?Wep0Bl$L!6%V|s6_uHz8=<&8hVzf*RAc+F(Lpwt?diFS<$EvL2)rk_uy6DL_h#@# zUqEGVDKE&h(ZD=KB^n}zHcKH%Bdl(6`~B!(7$X&)xiI=&MpH>9t_s~%)?XQ$M0a!` z1A4ZgGyU2w;Tv%dEJOc>P-;8Oz&%*VxJ9>q0w>@54zgPG;O?JJU(6IH1uDhU6mV&g zkjxljFfNUEJ#^;fWw6n(DyKwrrXKPsP*vW0~T6MHK2VTH^HDuAQik7Yp=+aUHq9_g^8h4Hmceegtqzl10s}a_AUs zF-N7yvxvuBHnka=jf4VQ%0WA^IF>n{eegX=ON^ex%$+ZDlxWeTgL))sZEflj7hbYV z@OCK48vK-g^2{2#i$C%_Vr9#ksyy5bLTu?9<733=Ee17>wW>G@??)0hPDp5KP%MKSfu(UOQ92y6gsseHkcz=n8<>_3#YR4k{PIx(qDD_r&VpCUDt)6q!~#e2fU)xnPnx zM7yY#qYk>FmyJHdZGtDAJ>5JtW*Xky46nq+e1;)U@ zLE0JIS`l0}*ymaH6n)Jg$YZC;wA!#GSpO(;bl8U_p&|CPY1zybhAG~F)mhFbH+7o0 zvyz!R#4kV$OemW+_2PX>hAR+KfkEZ6F;u^H2~`ShmU(!R=x6?6qDaf3XUlq%I*yIg z`Z}NFl^CK5C_%g=QJ9lN3s@_|%_HDo5uUmXbfsli+NOfa(SysSjAU6h+YG;0XsGjP z_RISMWX(Jc8|Tn)W3IZWSsXEfLDw7}|Fh)cG5N{Lo@6O{Qe$n<`lr`Et|o)ju(B#G zDgKSM95{chc#vJ9U@r0o>!4Wymwlizms&F=fb8P|-5*!a<5)&`aju$(8bt2M1yJ}f zkm55?C}ADg&{FS=y2+ZHEQhDJjr0W@Y2rp(iTKxE6+;Ql3JC4k`LZwe{rjY;(`vag zHMj~n0Ho(ld@n36MD+Wb)T@-{X+?T;L69g6la636CCwK!4OEBQdbkWyE1k(u(tchr zE&xL-hfj<<=ZhdrDrnG)17q{>GNWh+P7Y9?9u#EuOsS&O_dlv(=(54PQ@y5_02d)* z_`wdRTDtd9tkdXYJ|7dD5Fu@z+^fCZ11N(T2s~5Uk)y#DQ{#3}p0Y;S!FZB7$mRSdyR1mBF>EFutdZ~4c%c^uV`r#rV1(e2At^VBQ&MID%` zJL-d~T*93pU1QzNvRpphug>dLJeH97jW6NgxaJ@yGyKH5KT#!TF+NXgYu;xismS+& z6GX=}j^>M7LN#wpbSo5+tlkyDp{aW%5oHq{LS3^FUa>@zx%T`+&0Lzu3P)PSgO)6l z;81(*p|h=mMXAtGE2~~1&1kAG#!hC#W zn*rC^e^$SUFqlIFKO5I-g~H6`$BY@zgtD)P`ZfgIPlvT?iSc_OH31J=m(3pGBTSc! zOWVJKiQvwTW=D&Z>es4~|pBxJRrd7eLjZixpQM{Cur;<72_6s*0T z4Srb-&=%^f$?%tvZn-2~c%UQXurt)tqFDijN$(~mIWuO^9__y6YYFbvH{!(+~@(1oW}=3#YQ!ho@&!cA9NeF^ ztj4Cev&D2^B=6~->C?ou-oiJbrntK7H<}|Ehi-6T7$KTtnBM|k3BY@9vy2h(@F6=q z1o9y*v`WB%`keDF!Y*pD^bV`t;5z{+Nc3(;g=Opah#Qam6-g-5Uo&27hZ;pA%`Mpm zt-lN=dpp=pGvJvx3+Z(C?YKxRj9Z}8&UF}C52Q=vw_m9pE1 z<1FkJ251t#ZLv4EgT{m%Y&NHM+uGWqF&dmUrh=^XzDs9QW_cjk$9L{|RYIQAZ*;iU z4SpBWV(qD;YvSh3bDbMj=M?k?NJD?TBy0}9AB7G8*9UPjBxsnJ3fY|rDZAv@xLDOv zv_>r-*CDk_h&O@|k5||kvHr#IeJ$Yl-7X7;u#-G#enD25G%;%t7^o5BJUVT@I!c&$ zw{0k2OO%w6&JP})34cvsG=?5^&L5NMX&$n3yA5&8S)0&={%_ zwY|qX+3D?Y!S~Pay7%zU1dWaMG>RHRxbHq$B0TqnM}-Y4UUUindp_sz#RD+|L0zK9txg^% z)%svr?@;dlS8{wus{EfN-ao|ozXJYQ&i@~aZ-H+N0RG3~8{pqQ8Te1i{xPuW<3V_W YQkNU8Q)I-8|C}J18r?Olg1J5YFH79erT_o{ literal 0 HcmV?d00001 diff --git a/themes/mainroad/static/js/scripts.js b/themes/mainroad/static/js/scripts.js new file mode 100644 index 0000000..d008a33 --- /dev/null +++ b/themes/mainroad/static/js/scripts.js @@ -0,0 +1,2 @@ +/* Responsive-nav 1.0.39 */ +!function(a,b,c){"use strict";var d=function(d,e){var f=!!b.getComputedStyle;f||(b.getComputedStyle=function(a){return this.el=a,this.getPropertyValue=function(b){var c=/(\-([a-z]){1})/g;return"float"===b&&(b="styleFloat"),c.test(b)&&(b=b.replace(c,function(){return arguments[2].toUpperCase()})),a.currentStyle[b]?a.currentStyle[b]:null},this});var g,h,i,j,k,l,m=function(a,b,c,d){if("addEventListener"in a)try{a.addEventListener(b,c,d)}catch(e){if("object"!=typeof c||!c.handleEvent)throw e;a.addEventListener(b,function(a){c.handleEvent.call(c,a)},d)}else"attachEvent"in a&&("object"==typeof c&&c.handleEvent?a.attachEvent("on"+b,function(){c.handleEvent.call(c)}):a.attachEvent("on"+b,c))},n=function(a,b,c,d){if("removeEventListener"in a)try{a.removeEventListener(b,c,d)}catch(e){if("object"!=typeof c||!c.handleEvent)throw e;a.removeEventListener(b,function(a){c.handleEvent.call(c,a)},d)}else"detachEvent"in a&&("object"==typeof c&&c.handleEvent?a.detachEvent("on"+b,function(){c.handleEvent.call(c)}):a.detachEvent("on"+b,c))},o=function(a){if(a.children.length<1)throw new Error("The Nav container has no containing elements");for(var b=[],c=0;c10||Math.abs(a.touches[0].clientY-this.startY)>10)&&(this.touchHasMoved=!0)},_onTouchEnd:function(a){if(this._preventDefault(a),k&&!this.touchHasMoved){if("touchend"===a.type)return void this.toggle();var c=a||b.event;3!==c.which&&2!==c.button&&this.toggle()}},_onKeyUp:function(a){var c=a||b.event;13===c.keyCode&&this.toggle()},_transitions:function(){if(h.animate){var a=g.style,b="max-height "+h.transition+"ms";a.WebkitTransition=a.MozTransition=a.OTransition=a.transition=b}},_calcHeight:function(){for(var a=0,b=0;b