Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

homepage improvements #75

Merged
merged 1 commit into from
Apr 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import other from './other'

other()
// import other from './other'
// other()
console.log('hello, world!')
2 changes: 1 addition & 1 deletion app/assets/stylesheets/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ footer {

footer {
border-top: 1px solid var(--secondary);
color: #ccc;
color: #666;
font-size: .8rem;
margin-top: 2rem;
}
Expand Down
2 changes: 1 addition & 1 deletion app/views/application/_public.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class='public'>
<h2>🌱 <%= Rails.application.config.title %> Demo</h2>
<h2>🌱 <%= Rails.application.config.title %></h2>
<p>This application is a live demo of the
<%= link_to "#{Rails.application.config.title} template repository", Rails.application.config.github_url %>.
</p>
Expand Down
3 changes: 2 additions & 1 deletion app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title><%= Rails.application.config.title %></title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="A Ruby on Rails starter application">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
Expand Down