Compare commits
No commits in common. "4d53c8dd46e3a49af034756970b75d506ea071af" and "c4fd612b894e40e33e4c27efccf361acff05f94c" have entirely different histories.
4d53c8dd46
...
c4fd612b89
|
@ -6,6 +6,4 @@ class HomePagesController < ApplicationController
|
||||||
def index
|
def index
|
||||||
@latest_blog_post = BlogPost.published.order(created_at: :desc).first
|
@latest_blog_post = BlogPost.published.order(created_at: :desc).first
|
||||||
end
|
end
|
||||||
|
|
||||||
def uses ; end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
<section class="content">
|
|
||||||
<h2>/uses</h2>
|
|
||||||
|
|
||||||
<p>This page is inspired by <%= link_to "/uses", "https://uses.tech" %>.</p>
|
|
||||||
<p>For a more or less complete config, check out my <%= link_to "dotfiles", "https://git.tsvallender.co.uk/tsv/dotfiles" %>.</p>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h3>Hardware</h3>
|
|
||||||
|
|
||||||
<p>Incoming… about to build a new PC.</p>
|
|
||||||
|
|
||||||
<h3>Development environment</h3>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt>Neovim</dt>
|
|
||||||
<dd>The centrepiece</dd>
|
|
||||||
<dt>tmux</dt>
|
|
||||||
<dd></dd>
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
<h3>Self-hosted</h3>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt>Wallabag</dt>
|
|
||||||
<dd></dd>
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
<h3>Other stuff</h3>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt>Home Assistant</dt>
|
|
||||||
<dd>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.</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
|
@ -17,9 +17,6 @@ servers:
|
||||||
options:
|
options:
|
||||||
network: kamal
|
network: kamal
|
||||||
|
|
||||||
volumes:
|
|
||||||
- /srv/soc/storage:/rails/storage
|
|
||||||
|
|
||||||
registry:
|
registry:
|
||||||
username: tsvallender
|
username: tsvallender
|
||||||
password:
|
password:
|
||||||
|
|
|
@ -4,8 +4,6 @@ Rails.application.routes.draw do
|
||||||
default_url_options :host => "tsvallender.co.uk"
|
default_url_options :host => "tsvallender.co.uk"
|
||||||
|
|
||||||
root "home_pages#index"
|
root "home_pages#index"
|
||||||
get "uses" => "home_pages#uses", as: :uses
|
|
||||||
|
|
||||||
get "μposts", to: "microposts#index"
|
get "μposts", to: "microposts#index"
|
||||||
|
|
||||||
# Users and sessions
|
# Users and sessions
|
||||||
|
|
Loading…
Reference in New Issue