-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/prospective volunteer view (#139)
* changed volunteer to 'Get Involved', links to CC website to make maintaining info easier * created page for prospective volunteers and social media
- Loading branch information
1 parent
950cf33
commit a004ee3
Showing
11 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Place all the styles related to the get-involved controller here. | ||
// They will automatically be included in application.css. | ||
// You can use Sass (SCSS) here: https://sass-lang.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
class GetInvolvedController < ApplicationController | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
module GetInvolvedHelper | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<h1>Become a Volunteer</h1> | ||
<div class = "centered-div"> | ||
<div class = "get-involved-div"> | ||
<p>Our pop-up shops and mobile delivery system wouldn't work without a team of dedicated team of volunteers. Join us by clicking the link below!</p> | ||
</div> | ||
</div> | ||
<div class = "centered-div"> | ||
<%= link_to 'Next Steps', 'https://forms.gle/2vAghkBBsVDRd8oFA', target: :_blank, class:"home-link" %> | ||
</div> | ||
<h1>We Need You to Share Our Information</h1> | ||
<div class = "centered-div"> | ||
<div class = "get-involved-div"> | ||
<p>Our biggest obstacle in the fight to improve the lives of Georgia's children is that many people are not informed about the challenges present in Georgia's child welfare system. We share information about our work and these challenges constantly on our social media. Following us and sharing this information with your friends helps us tremendously. You can find the links to our Facebook, Instagram, and Twitter below. </p> | ||
</div> | ||
</div> | ||
<div class = "centered-div"> | ||
<%= link_to image_tag("facebook.png", class:"social-link"), 'https://www.facebook.com/608103152697463', {:style=>'padding-left: 5px;', :class => "social-link"} %> | ||
<%= link_to image_tag("twitter.png", class:"social-link"), 'https://www.twitter.com/carries_closets', class:"social-link" %> | ||
<%= link_to image_tag("instagram.png", class:"social-link"), 'https://www.instagram.com/carries_closetofga/', {:style=>'padding-right: 5px;', :class => "social-link"} %> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
require "test_helper" | ||
|
||
class GetInvolvedControllerTest < ActionDispatch::IntegrationTest | ||
# test "the truth" do | ||
# assert true | ||
# end | ||
end |