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

github.com/xiaoheiAh/hugo-theme-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorotis <hdzee19@gmail.com>2019-10-16 11:23:48 +0300
committerotis <hdzee19@gmail.com>2019-10-16 11:23:48 +0300
commit2893b67318a5293869fdbd4271e4d1e92f3ce661 (patch)
tree75bd886f310aba91114719e6957ed11e58c0e385 /exampleSite
parent917b5b7880474524451cad21f2bce2fd5f8699c6 (diff)
update exampleSite
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/.DS_Storebin6148 -> 8196 bytes
-rw-r--r--exampleSite/portfolio/.gitkeep0
-rw-r--r--exampleSite/posts/_index.md (renamed from exampleSite/post/_index.md)0
-rw-r--r--exampleSite/posts/emoji-support.md (renamed from exampleSite/post/emoji-support.md)0
-rw-r--r--exampleSite/posts/markdown-syntax.md (renamed from exampleSite/post/markdown-syntax.md)0
-rw-r--r--exampleSite/posts/math-typesetting.mmark (renamed from exampleSite/post/math-typesetting.mmark)0
-rw-r--r--exampleSite/posts/placeholder-text.md (renamed from exampleSite/post/placeholder-text.md)0
-rw-r--r--exampleSite/posts/rich-content.md (renamed from exampleSite/post/rich-content.md)0
-rw-r--r--exampleSite/product/.gitkeep0
-rw-r--r--exampleSite/sketch/lines-from-center.html26
10 files changed, 0 insertions, 26 deletions
diff --git a/exampleSite/.DS_Store b/exampleSite/.DS_Store
index 64a32b9..73dde04 100644
--- a/exampleSite/.DS_Store
+++ b/exampleSite/.DS_Store
Binary files differ
diff --git a/exampleSite/portfolio/.gitkeep b/exampleSite/portfolio/.gitkeep
deleted file mode 100644
index e69de29..0000000
--- a/exampleSite/portfolio/.gitkeep
+++ /dev/null
diff --git a/exampleSite/post/_index.md b/exampleSite/posts/_index.md
index f8374e6..f8374e6 100644
--- a/exampleSite/post/_index.md
+++ b/exampleSite/posts/_index.md
diff --git a/exampleSite/post/emoji-support.md b/exampleSite/posts/emoji-support.md
index ecf6c86..ecf6c86 100644
--- a/exampleSite/post/emoji-support.md
+++ b/exampleSite/posts/emoji-support.md
diff --git a/exampleSite/post/markdown-syntax.md b/exampleSite/posts/markdown-syntax.md
index d60c404..d60c404 100644
--- a/exampleSite/post/markdown-syntax.md
+++ b/exampleSite/posts/markdown-syntax.md
diff --git a/exampleSite/post/math-typesetting.mmark b/exampleSite/posts/math-typesetting.mmark
index 7f421ae..7f421ae 100644
--- a/exampleSite/post/math-typesetting.mmark
+++ b/exampleSite/posts/math-typesetting.mmark
diff --git a/exampleSite/post/placeholder-text.md b/exampleSite/posts/placeholder-text.md
index 378b995..378b995 100644
--- a/exampleSite/post/placeholder-text.md
+++ b/exampleSite/posts/placeholder-text.md
diff --git a/exampleSite/post/rich-content.md b/exampleSite/posts/rich-content.md
index 3ad9d97..3ad9d97 100644
--- a/exampleSite/post/rich-content.md
+++ b/exampleSite/posts/rich-content.md
diff --git a/exampleSite/product/.gitkeep b/exampleSite/product/.gitkeep
deleted file mode 100644
index e69de29..0000000
--- a/exampleSite/product/.gitkeep
+++ /dev/null
diff --git a/exampleSite/sketch/lines-from-center.html b/exampleSite/sketch/lines-from-center.html
deleted file mode 100644
index 3d79487..0000000
--- a/exampleSite/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