From e81eafcd68a219f025e82a155e59ba572d0aaacb Mon Sep 17 00:00:00 2001
From: Daniel Rudolf <github.com@daniel-rudolf.de>
Date: Mon, 1 May 2017 18:56:54 +0200
Subject: [PATCH] Extract default theme from picocms/Pico repo

This repo is a copy of the picocms/Pico repo (https://github.com/picocms/Pico) at commit 82a342ba445122182b898a2c1800f03c8d16f18c with rewritten history. Only commits which are relevant for the themes/default/ directory (https://github.com/picocms/Pico/tree/82a342ba445122182b898a2c1800f03c8d16f18c/themes/default/) were preserved. The command used to create this repo can be found at http://stackoverflow.com/a/37037151.

Pico is licensed under the MIT License (https://github.com/picocms/Pico/blob/82a342ba445122182b898a2c1800f03c8d16f18c/LICENSE.md).
---
 .gitignore                                    |  16 ++++++++++
 LICENSE                                       |  21 +++++++++++++
 README.md                                     |  18 +++++++++++
 composer.json                                 |  29 ++++++++++++++++++
 {themes/default/font => font}/LICENSE.txt     |   0
 {themes/default/font => font}/fontello.eot    | Bin
 {themes/default/font => font}/fontello.svg    |   0
 {themes/default/font => font}/fontello.ttf    | Bin
 {themes/default/font => font}/fontello.woff   | Bin
 {themes/default/font => font}/fontello.woff2  | Bin
 themes/default/fontello.css => fontello.css   |   0
 themes/default/index.twig => index.twig       |   0
 .../js => js}/modernizr-3.3.1-custom.min.js   |   0
 {themes/default/js => js}/pico.js             |   0
 {themes/default/js => js}/utils.js            |   0
 themes/default/style.css => style.css         |   0
 16 files changed, 84 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 LICENSE
 create mode 100644 README.md
 create mode 100644 composer.json
 rename {themes/default/font => font}/LICENSE.txt (100%)
 rename {themes/default/font => font}/fontello.eot (100%)
 rename {themes/default/font => font}/fontello.svg (100%)
 rename {themes/default/font => font}/fontello.ttf (100%)
 rename {themes/default/font => font}/fontello.woff (100%)
 rename {themes/default/font => font}/fontello.woff2 (100%)
 rename themes/default/fontello.css => fontello.css (100%)
 rename themes/default/index.twig => index.twig (100%)
 rename {themes/default/js => js}/modernizr-3.3.1-custom.min.js (100%)
 rename {themes/default/js => js}/pico.js (100%)
 rename {themes/default/js => js}/utils.js (100%)
 rename themes/default/style.css => style.css (100%)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..768fc06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,16 @@
+# Linux
+*~
+*.swp
+
+# Windows
+Thumbs.db
+desktop.ini
+
+# Mac OS X
+.DS_Store
+._*
+
+# Composer
+/composer.lock
+/composer.phar
+/vendor
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..91a34cf
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2012 The Pico Community
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1369ec2
--- /dev/null
+++ b/README.md
@@ -0,0 +1,18 @@
+Pico Default Theme
+==================
+
+This is the repository of Pico's official default theme.
+
+Pico is a stupidly simple, blazing fast, flat file CMS. See http://picocms.org/ for more info.
+
+Please refer to [`picocms/Pico`](https://github.com/picocms/Pico) to get info about how to contribute or getting help.
+
+Screenshot
+----------
+
+![Pico Screenshot](https://cloud.githubusercontent.com/assets/920356/17342119/f5a85ee8-58f7-11e6-856e-cd72f76cec61.png)
+
+Install
+-------
+
+You don't have to install this theme manually, it's already a dependency of Pico's core.
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..058bd8f
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,29 @@
+{
+    "name": "picocms/pico-theme",
+    "type": "pico-theme",
+    "description": "This is Pico's official default theme. Pico is a stupidly simple, blazing fast, flat file CMS.",
+    "keywords": ["pico","pico-theme"],
+    "homepage": "http://picocms.org/",
+    "license": "MIT",
+    "authors": [
+        {
+            "name": "The Pico Community",
+            "homepage": "http://picocms.org/"
+        },
+        {
+            "name": "Contributors",
+            "homepage": "https://github.com/picocms/pico-theme/graphs/contributors"
+        }
+    ],
+    "support": {
+        "docs": "http://picocms.org/themes/default/",
+        "issues": "https://github.com/picocms/pico-theme/issues",
+        "source": "https://github.com/picocms/pico-theme"
+    },
+    "require": {
+        "composer/installers": "~1.0"
+    },
+    "extra": {
+        "installer-name": "default"
+    }
+}
diff --git a/themes/default/font/LICENSE.txt b/font/LICENSE.txt
similarity index 100%
rename from themes/default/font/LICENSE.txt
rename to font/LICENSE.txt
diff --git a/themes/default/font/fontello.eot b/font/fontello.eot
similarity index 100%
rename from themes/default/font/fontello.eot
rename to font/fontello.eot
diff --git a/themes/default/font/fontello.svg b/font/fontello.svg
similarity index 100%
rename from themes/default/font/fontello.svg
rename to font/fontello.svg
diff --git a/themes/default/font/fontello.ttf b/font/fontello.ttf
similarity index 100%
rename from themes/default/font/fontello.ttf
rename to font/fontello.ttf
diff --git a/themes/default/font/fontello.woff b/font/fontello.woff
similarity index 100%
rename from themes/default/font/fontello.woff
rename to font/fontello.woff
diff --git a/themes/default/font/fontello.woff2 b/font/fontello.woff2
similarity index 100%
rename from themes/default/font/fontello.woff2
rename to font/fontello.woff2
diff --git a/themes/default/fontello.css b/fontello.css
similarity index 100%
rename from themes/default/fontello.css
rename to fontello.css
diff --git a/themes/default/index.twig b/index.twig
similarity index 100%
rename from themes/default/index.twig
rename to index.twig
diff --git a/themes/default/js/modernizr-3.3.1-custom.min.js b/js/modernizr-3.3.1-custom.min.js
similarity index 100%
rename from themes/default/js/modernizr-3.3.1-custom.min.js
rename to js/modernizr-3.3.1-custom.min.js
diff --git a/themes/default/js/pico.js b/js/pico.js
similarity index 100%
rename from themes/default/js/pico.js
rename to js/pico.js
diff --git a/themes/default/js/utils.js b/js/utils.js
similarity index 100%
rename from themes/default/js/utils.js
rename to js/utils.js
diff --git a/themes/default/style.css b/style.css
similarity index 100%
rename from themes/default/style.css
rename to style.css
-- 
GitLab