add makefile and reorg
parent
3ad30982fd
commit
2bcc320755
|
@ -0,0 +1,18 @@
|
||||||
|
# most of my sites are super simple static html with some styles
|
||||||
|
# just compile the sass and copy content over
|
||||||
|
all: ayerh.art steve.ayerh.art music.ayerh.art
|
||||||
|
|
||||||
|
ayerh.art:
|
||||||
|
@echo "Building ayerh.art"
|
||||||
|
@mkdir -p public/sites/ayerh.art/style
|
||||||
|
@sassc style/scss/waves.scss public/ayerh.art/style/waves.css
|
||||||
|
|
||||||
|
steve.ayerh.art:
|
||||||
|
@echo "Building steve.ayerh.art"
|
||||||
|
@mkdir -p public/sites/steve.ayerh.art/style
|
||||||
|
@sassc style/scss/perspective.scss public/steve.ayerh.art/style/perspective.css
|
||||||
|
|
||||||
|
music.ayerh.art:
|
||||||
|
@echo "Building music.ayerh.art"
|
||||||
|
@mkdir -p public/sites/music.ayerh.art/style
|
||||||
|
@sassc style/scss/music.scss public/steve.ayerh.art/style/music.css
|
|
@ -2,7 +2,7 @@ server {
|
||||||
server_name music.ayerh.art;
|
server_name music.ayerh.art;
|
||||||
listen 443;
|
listen 443;
|
||||||
|
|
||||||
root /home/steve/sites/music.ayerh.art;
|
root /home/steve/ayerh.art/public/music.ayerh.art;
|
||||||
|
|
||||||
location ~ /.well-known {
|
location ~ /.well-known {
|
||||||
allow all;
|
allow all;
|
||||||
|
@ -12,9 +12,9 @@ server {
|
||||||
proxy_set_header Accept-Encoding "";
|
proxy_set_header Accept-Encoding "";
|
||||||
|
|
||||||
# TODO: handle params?
|
# TODO: handle params?
|
||||||
proxy_pass https://musicbrainz.org/ws/2/collection?editor=sayerhat
|
proxy_pass https://musicbrainz.org/ws/2/collection?editor=sayerhart
|
||||||
|
|
||||||
xslt_stylesheet /home/steve/sites/music.ayerh.art/xslt/collections.xsl;
|
xslt_stylesheet /home/steve/ayerh.art/xslt/collections.xsl;
|
||||||
xslt_types *;
|
xslt_types *;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ server {
|
||||||
# TODO: handle params?
|
# TODO: handle params?
|
||||||
proxy_pass https://musicbrainz.org/ws/2/collection/$uuid/releases?inc=artist-credits+releases;
|
proxy_pass https://musicbrainz.org/ws/2/collection/$uuid/releases?inc=artist-credits+releases;
|
||||||
|
|
||||||
xslt_stylesheet /home/steve/sites/music.ayerh.art/xslt/collection.xsl;
|
xslt_stylesheet /home/steve/ayerh.art/xslt/collection.xsl;
|
||||||
xslt_types *;
|
xslt_types *;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display" rel="stylesheet">
|
||||||
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display|Montserrat" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display|Montserrat" rel="stylesheet">
|
||||||
|
|
||||||
<link href="waves.css" rel="stylesheet">
|
<link href="/style/waves.css" rel="stylesheet">
|
||||||
<script src="waves.js" type="text/javascript"></script>
|
<script src="/scripts/waves.js" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
Before Width: | Height: | Size: 641 KiB After Width: | Height: | Size: 641 KiB |
Before Width: | Height: | Size: 575 KiB After Width: | Height: | Size: 575 KiB |
Before Width: | Height: | Size: 374 KiB After Width: | Height: | Size: 374 KiB |
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@900"/>
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@900"/>
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300"/>
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300"/>
|
||||||
<link rel="stylesheet" href="perspective.css"/>
|
<link rel="stylesheet" href="/style/perspective.css"/>
|
||||||
<title>Steve Ayerhart</title>
|
<title>Steve Ayerhart</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@900"/>
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@900"/>
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300"/>
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300"/>
|
||||||
<link rel="stylesheet" href="perspective.css"/>
|
<link rel="stylesheet" href="/style/perspective.css"/>
|
||||||
<title>Steve Ayerhart</title>
|
<title>Steve Ayerhart</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
Loading…
Reference in New Issue