Skip to content

Commit

Permalink
fix links and github action
Browse files Browse the repository at this point in the history
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>

rh-pre-commit.version: 2.2.0
rh-pre-commit.check-secrets: ENABLED
  • Loading branch information
avinal committed Mar 30, 2024
1 parent d085c84 commit d2c0f90
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ jobs:
node-version: 16
cache: "npm"
cache-dependency-path: ./package-lock.json
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.124.1'
extended: true
- name: Install elm-land and node packages
run: npm install
- name: build
run: make all
run: make
5 changes: 4 additions & 1 deletion src/Components/Footer.elm
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
module Components.Footer exposing (..)

import Html exposing (Html)
import Html.Attributes exposing (class, href, src)
import Html.Attributes exposing (class, href, src, target)
import Utils.Constants exposing (IconLink, Link, footerLinks)
import Html.Attributes exposing (rel)


singleLink : Link -> Html msg
singleLink link =
Html.a
[ href link.url
, class "underline decoration-cyan-500 hover:decoration-pink-500 text-xl"
, target "_blank"
, rel "noopener noreferrer"
]
[ Html.text link.text ]

Expand Down

0 comments on commit d2c0f90

Please sign in to comment.