├── Procfile ├── public ├── barryfrost.jpg ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── barryfrost-favicon.png ├── main.js ├── sw.js ├── manifest.json └── css │ ├── moof.css │ └── font-awesome.min.css ├── views ├── static.erb ├── 410.erb ├── 404.erb ├── 500.erb ├── _search_form.erb ├── _sources.erb ├── _syndications.erb ├── _deleted.erb ├── _photos_all.erb ├── _timestamp.erb ├── _name.erb ├── rss.builder ├── _meta.erb ├── _photos.erb ├── _indie_actions.erb ├── entry.erb ├── _categories.erb ├── _webmention_counts.erb ├── event.erb ├── _location.erb ├── index.erb ├── _contexts.erb ├── layout.erb └── _webmentions.erb ├── config └── syndication_targets.json ├── lib ├── transformative │ ├── event.rb │ ├── card.rb │ ├── authorship.rb │ ├── cite.rb │ ├── notification.rb │ ├── redis.rb │ ├── file_system.rb │ ├── utils.rb │ ├── media.rb │ ├── syndication.rb │ ├── auth.rb │ ├── entry.rb │ ├── twitter.rb │ ├── micropub.rb │ ├── store.rb │ ├── context.rb │ ├── post.rb │ ├── webmention.rb │ ├── cache.rb │ ├── server.rb │ └── view_helper.rb └── transformative.rb ├── Gemfile ├── .gitignore ├── config.ru ├── LICENSE ├── Rakefile ├── scripts ├── migrate_entries.rb ├── migrate_contexts.rb └── migrate_webmentions.rb ├── Gemfile.lock └── README.md /Procfile: -------------------------------------------------------------------------------- 1 | web: rackup -s puma -p $PORT -------------------------------------------------------------------------------- /public/barryfrost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryf/transformative/HEAD/public/barryfrost.jpg -------------------------------------------------------------------------------- /public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryf/transformative/HEAD/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /views/static.erb: -------------------------------------------------------------------------------- 1 |
The page or post was not found.
7 |Try searching instead:
10 | 11 | <%= erb :_search_form %> 12 | 13 |This post has been deleted and is no longer available.
29 | Starts at 30 | 34 | UTC. 35 | <% if @post.properties.key?('end') %> 36 | Finishes at 37 | 41 | UTC. 42 | <% end %> 43 |
44 | 45 | <% if @post.properties.key?('summary') %> 46 |
34 |