diff --git a/app/controllers/home_pages_controller.rb b/app/controllers/home_pages_controller.rb index 3ce037c..207273c 100644 --- a/app/controllers/home_pages_controller.rb +++ b/app/controllers/home_pages_controller.rb @@ -6,4 +6,6 @@ class HomePagesController < ApplicationController def index @latest_blog_post = BlogPost.published.order(created_at: :desc).first end + + def uses ; end end diff --git a/app/views/home_pages/uses.html.erb b/app/views/home_pages/uses.html.erb new file mode 100644 index 0000000..0e1faee --- /dev/null +++ b/app/views/home_pages/uses.html.erb @@ -0,0 +1,36 @@ +
+

/uses

+ +

This page is inspired by <%= link_to "/uses", "https://uses.tech" %>.

+

For a more or less complete config, check out my <%= link_to "dotfiles", "https://git.tsvallender.co.uk/tsv/dotfiles" %>.

+ +
+ +

Hardware

+ +

Incoming… about to build a new PC.

+ +

Development environment

+ +
+
Neovim
+
The centrepiece
+
tmux
+
+
+ +

Self-hosted

+ +
+
Wallabag
+
+
+ +

Other stuff

+ +
+
Home Assistant
+
I run the fantastic <%= link_to "Home Assistant", "https://www.home-assistant.io/" %> for smart home stuff. I’m + not doing anything too fancy with it currently, mostly lighting and TRVs.
+
+
diff --git a/config/routes.rb b/config/routes.rb index 891be87..13abc4b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,6 +4,8 @@ Rails.application.routes.draw do default_url_options :host => "tsvallender.co.uk" root "home_pages#index" + get "uses" => "home_pages#uses", as: :uses + get "μposts", to: "microposts#index" # Users and sessions