Kristof Vandam 4 years ago
parent
commit
e8eb18e329
  1. 1
      .direnv/flake-inputs/2kk6k544kgd4qig5rx812qn2qcwjx5qh-source
  2. 1
      .direnv/flake-inputs/p1ranb8qkpgcwh3lag39jjmcajk7rsjx-source
  3. 1
      .direnv/flake-inputs/pnwyi8fcq1v0b9i4905b3yxkaw29dmly-source
  4. 1
      .direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa
  5. 1630
      .direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc
  6. 1
      .envrc
  7. 0
      .hugo_build.lock
  8. 4
      config.toml
  9. 43
      flake.lock
  10. 15
      flake.nix
  11. 2
      public/css/lightbox.css
  12. 1
      public/css/redlounge.css
  13. 1
      themes/redlounge/static/css/redlounge.css

1
.direnv/flake-inputs/2kk6k544kgd4qig5rx812qn2qcwjx5qh-source vendored

@ -0,0 +1 @@
/nix/store/2kk6k544kgd4qig5rx812qn2qcwjx5qh-source

1
.direnv/flake-inputs/p1ranb8qkpgcwh3lag39jjmcajk7rsjx-source vendored

@ -0,0 +1 @@
/nix/store/p1ranb8qkpgcwh3lag39jjmcajk7rsjx-source

1
.direnv/flake-inputs/pnwyi8fcq1v0b9i4905b3yxkaw29dmly-source vendored

@ -0,0 +1 @@
/nix/store/pnwyi8fcq1v0b9i4905b3yxkaw29dmly-source

1
.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa vendored

@ -0,0 +1 @@
/nix/store/h22lwjkqqckazfmbpj95i36zzwwkvq1z-nix-shell-env

1630
.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc vendored

File diff suppressed because it is too large Load Diff

1
.envrc

@ -0,0 +1 @@
use flake

0
.hugo_build.lock

4
config.toml

@ -1,5 +1,5 @@
title = "Hagfi.sh"
baseURL = "https://hagfi.sh/"
baseURL = "https://blog.hagfi.sh/"
languageCode = "en-us"
theme = "redlounge"
metaDataFormat = "yaml"
@ -27,4 +27,4 @@ disqusShortname = "hagfish"
#[[menu.main]]
# name = "Tools"
# url = "/categories/tools"
# url = "/categories/tools"

43
flake.lock

@ -0,0 +1,43 @@
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1642700792,
"narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "846b2ae0fc4cc943637d3d1def4454213e203cba",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1643000262,
"narHash": "sha256-8hrbufiCcZgicU8UvHaRkruYuzM8z3lJvQkSh9ezMEg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "cc68710784ffe0ee035ee7b726656c44566cac94",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

15
flake.nix

@ -0,0 +1,15 @@
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ hugo ];
buildInputs = [ ];
};
});
}

2
public/css/lightbox.css

@ -43,7 +43,6 @@ body:after {
.lb-outerContainer {
position: relative;
background-color: white;
*zoom: 1;
width: 250px;
height: 250px;
margin: 0 auto;
@ -145,7 +144,6 @@ body:after {
.lb-dataContainer {
margin: 0 auto;
padding-top: 5px;
*zoom: 1;
width: 100%;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;

1
public/css/redlounge.css

@ -118,7 +118,6 @@ h2.brand-tagline {
.nav-item {
display: inline-block;
*display: inline;
zoom: 1;
}
.nav-item a {
background: transparent;

1
themes/redlounge/static/css/redlounge.css

@ -121,7 +121,6 @@ h2.brand-tagline {
.nav-item {
display: inline-block;
*display: inline;
zoom: 1;
}
.nav-item a {
background: transparent;

Loading…
Cancel
Save