vs 1.2 Nav Bar and About Us page

This commit is contained in:
Ben 2023-12-15 16:14:25 -06:00
parent 9ccf70e10c
commit 7066ce481f
4 changed files with 36 additions and 8 deletions

View File

@ -1,4 +1,8 @@
class HomeController < ApplicationController
def index
end
def about
end
end

View File

@ -1,2 +1,2 @@
<h1>This is my friends app! Heck yeah I'm a developer</h1>
<p>Find me in app/views/home/index.html.erb</p>

View File

@ -1,15 +1,37 @@
<!DOCTYPE html>
<html>
<!doctype html>
<html lang="en">
<head>
<title>Friends</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Friends App</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
</head>
</head>
<body>
<%= render 'home/header' %>
<div class="container"
<br/>
<%= yield %>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>

View File

@ -1,5 +1,7 @@
Rails.application.routes.draw do
get 'home/index'
# get 'home/index'
get 'home/about'
root 'home#index'
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.