all: .PHONY: all .PHONY: sync-from-webflow # HTML sync-from-webflow: static/index.html # sync-from-webflow: static/about/index.html # sync-from-webflow: static/home-copy/index.html # sync-from-webflow: static/contact/index.html # sync-from-webflow: static/team/index.html # sync-from-webflow: static/blog/index.html # sync-from-webflow: static/styleguide/index.html # sync-from-webflow: static/press/index.html # CSS & JS sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/js/webflow.fbf9e890f.js sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/css/umorpha.webflow.a8989709b.min.css # Images sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/65139fa5e0b8553d4c913fe5_logo_horizontal_2.svg sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/65137e999ce90eda6bc2c5f1_placeholder_background.jpg sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/65c2e2af7a1dadffe6300e57_umorpha_logo_square_noborder_blue_256.png sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/6515ffbd1e90dc6f533c7a85_umorpha_favcon.jpg sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/6514f53226dcd604df7bb02c_oshwa.png sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/65150cff2a5918f4659245bb_eeba-new.svg sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/65151c532305724bd7375cc3_colorado_green_building_guild.svg sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21adaa/6544458754dbcf28bbba8c70_umorpha_square_logo_black.svg sync-from-webflow: static/webflow-assets/650a2b4cc0091d7b7c21ae2e/6515e92ca9da14dcb48bcb9e_html_image_full.jpg # Uploads sync-from-webflow: static/webflow-uploads/650a2b4cc0091d7b7c21adaa/650a2db03a157b2c46cdd565_Futura-Std-Medium.ttf # There aught to be a way to automate this: # # Open Firefox DevTools to the "Network" tab. Check "Disable Cache" # and "Persist Logs". Visit the following pages: # # - https://umorpha.webflow.io/ # - https://umorpha.webflow.io/about # - https://umorpha.webflow.io/home-copy # - https://umorpha.webflow.io/contact # - https://umorpha.webflow.io/team # - https://umorpha.webflow.io/blog # - https://umorpha.webflow.io/styleguide # - https://umorpha.webflow.io/press # # "Save All As HAR" #umorpha.webflow.io.har: # ffscript ... mirror: umorpha.webflow.io.har unhar.go rm -rf $@ go run unhar.go $@ <$< mirror/%: mirror test -f $@ rewrite = sed rewrite += -e 's,https://assets-global.website-files.com/,/webflow-assets/,g' rewrite += -e 's,https://uploads-ssl.webflow.com/,/webflow-uploads/,g' rewrite += -e 's,Futura%20Std%20Medium\.ttf,Futura-Std-Medium\.ttf,g' static/%.html: mirror/umorpha.webflow.io/%.html patches/%.html.patch Makefile mkdir -p $(@D) <$< $(rewrite) | (tidy -quiet -indent -wrap 0||true) >$@ patch -i patches/$*.html.patch $@ static/%.html: mirror/umorpha.webflow.io/%.html Makefile mkdir -p $(@D) <$< $(rewrite) | (tidy -quiet -indent -wrap 0||true) >$@ ! test -f patches/$*.html.patch static/webflow-assets/%.js: mirror/assets-global.website-files.com/%.js patches/webflow-assets/%.js.patch Makefile mkdir -p $(@D) <$< $(rewrite) | js-beautify --stdin >$@ patch -i patches/webflow-assets/$*.js.patch $@ static/webflow-assets/%: mirror/assets-global.website-files.com/% Makefile mkdir -p $(@D) $(rewrite) <$< >$@ static/webflow-uploads/%: mirror/uploads-ssl.webflow.com/% Makefile mkdir -p $(@D) $(rewrite) <$< >$@