From 503545b48b4cbb15de72900ad913b448b546bfc6 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Tue, 22 Sep 2020 20:44:47 -0500 Subject: [PATCH] Add licenses --- Main.purs | 15 +++++++++++++++ Makefile | 2 +- index.scss | 17 +++++++++++++++++ index.slim | 15 +++++++++++++++ 4 files changed, 48 insertions(+), 1 deletion(-) diff --git a/Main.purs b/Main.purs index 1da7f83..84fd6ff 100644 --- a/Main.purs +++ b/Main.purs @@ -1,3 +1,18 @@ +-- Full source may be found at: https://git.singpolyma.net/post-part +-- Copyright 2020 Stephen Paul Weber +-- +-- Permission to use, copy, modify, and/or distribute this software for any +-- purpose with or without fee is hereby granted, provided that the above +-- copyright notice and this permission notice appear in all copies. +-- +-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +-- SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER +-- RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +-- CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +-- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + module Main where import Prelude diff --git a/Makefile b/Makefile index 21eb870..badc345 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ index.css: index.scss _font-face.scss sassc -Mt expanded index.scss $@ index.js: Main.purs packages.dhall spago.dhall - spago bundle-app --main Main --to index.js + spago bundle-app -u-c --main Main --to index.js clean: $(RM) -r index.html index.css index.js output/ diff --git a/index.scss b/index.scss index 368223d..1bda4ff 100644 --- a/index.scss +++ b/index.scss @@ -1,3 +1,20 @@ +/* +* Full source may be found at: https://git.singpolyma.net/post-part +* Copyright 2020 Stephen Paul Weber +* +* Permission to use, copy, modify, and/or distribute this software for any +* purpose with or without fee is hereby granted, provided that the above +* copyright notice and this permission notice appear in all copies. +* +* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER +* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ + @import "font-face"; @include font-face(cardo, assets/fonts/cardo-v12-latin-regular); diff --git a/index.slim b/index.slim index 270cd1f..02d0fdf 100644 --- a/index.slim +++ b/index.slim @@ -1,3 +1,18 @@ +-# Full source may be found at: https://git.singpolyma.net/post-part +-# Copyright 2020 Stephen Paul Weber +-# +-# Permission to use, copy, modify, and/or distribute this software for any +-# purpose with or without fee is hereby granted, provided that the above +-# copyright notice and this permission notice appear in all copies. +-# +-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +-# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER +-# RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +-# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +-# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + - paras = File.read("assets/paras.txt").lines doctype html html -- 2.34.7