Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoBasicExample.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandros <onedrawingperday@users.noreply.github.com>2019-10-05 10:29:36 +0300
committerGitHub <noreply@github.com>2019-10-05 10:29:36 +0300
commit992ef265a3b0fe921cd1f51801bfd07ca909cb43 (patch)
tree7ff3a3669bb04103655dfd0801a03b65ffd1fcb2
parentf3f9fec642171287c3db8826bfd0cf0bb93e4c55 (diff)
Cleanup repo (#54)
-rw-r--r--confIgnore.toml5
-rw-r--r--config.toml1
-rw-r--r--content/portfolio/.gitkeep0
-rw-r--r--content/product/.gitkeep0
-rw-r--r--content/sketch/lines-from-center.html26
5 files changed, 0 insertions, 32 deletions
diff --git a/confIgnore.toml b/confIgnore.toml
deleted file mode 100644
index e46548f..0000000
--- a/confIgnore.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-ignoreFiles = ["content/portfolio/\\.*","content/product/\\.*","content/sketch/\\.*"]
-
-
-
diff --git a/config.toml b/config.toml
index 50f9786..d21fbd0 100644
--- a/config.toml
+++ b/config.toml
@@ -1,4 +1,3 @@
-ignoreFiles = ["content/portfolio/\\.*","content/product/\\.*","content/sketch/\\.*"]
baseURL = "https://gohugo.io/"
title = "Hugo Themes"
author = "Steve Francia"
diff --git a/content/portfolio/.gitkeep b/content/portfolio/.gitkeep
deleted file mode 100644
index e69de29..0000000
--- a/content/portfolio/.gitkeep
+++ /dev/null
diff --git a/content/product/.gitkeep b/content/product/.gitkeep
deleted file mode 100644
index e69de29..0000000
--- a/content/product/.gitkeep
+++ /dev/null
diff --git a/content/sketch/lines-from-center.html b/content/sketch/lines-from-center.html
deleted file mode 100644
index 3d79487..0000000
--- a/content/sketch/lines-from-center.html
+++ /dev/null
@@ -1,26 +0,0 @@
----
-title: "Lines from center"
-date: 2019-03-04T22:15:42-03:00
-description: "this is a p5js sketch"
-libs:
- js:
- - https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js
----
-
-<div id="sketch"></div>
-
-<script>
- var sketch = document.getElementById('sketch')
- function setup() {
- var canvas = createCanvas(windowWidth, windowHeight)
- canvas.parent('#sketch')
- }
-
- function draw() {
- line(width/2, height/2, mouseX, mouseY)
- }
-
- function windowResized() {
- resizeCanvas(windowWidth, windowHeight);
- }
-</script> \ No newline at end of file