forked from KTC96/ShoreCleanse
-
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.
Merge pull request KTC96#46 from rinalds98/location
add contact page with boiler plate text
- Loading branch information
Showing
4 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
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
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,25 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block content %} | ||
|
||
<div class="bg-color"> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-12 col-lg-6 my-5"> | ||
<h1 class="mb-4">Location & Contact Details</h1> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, | ||
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. | ||
Consectetur a erat nam at lectus urna. Ac turpis egestas sed tempus | ||
urna et pharetra. | ||
</p> | ||
<p><strong>Address:</strong> 123 grafton street, Dublin 1</p> | ||
<p><strong>Phone:</strong> 01 123 4567</p> | ||
<p><strong>Email:</strong> [email protected]</p></div> | ||
<div class="col-sm-12 col-lg-6 my-5"> | ||
<img src="https://via.placeholder.com/400x400" alt="Google maps image"></div> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |