Skip to content
This repository has been archived by the owner. It is now read-only.

New Links for UConn Health #140

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,18 @@
# PHP Web Server
wordpress:
container_name: cornerstone-wordpress
image: wordpress:latest
ports:
- "8000:80"
volumes:
- ./:/var/www/html/wp-content/themes/cornerstone/
links:
- mysql:mysql
restart: always

# MySQL Server
mysql:
container_name: cornerstone-mysql
image: mysql
environment:
MYSQL_ROOT_PASSWORD: 'wordpress'
10 changes: 5 additions & 5 deletions footer.php
Expand Up @@ -36,19 +36,19 @@ if ( apply_filters( 'load_custom_footer', false ) ) {
if($location == 'uchc'){
?>
<li>
<a href="http://www.uchc.edu/siteindex/index.html">A-Z Index</a>
<a href="http://health.uconn.edu/az/">A-Z Index</a>
</li>
<li>
<a href="http://www.uchc.edu/" >UConn Health</a>
<a href="http://health.uconn.edu/">UConn Health</a>
</li>
<li>
<a href="http://www.uchc.edu/disclaimer/index.html">Disclaimer, Privacy Notice &amp; Copyright</a>
<a href="http://health.uconn.edu/disclaimersprivacy/">Disclaimer, Privacy Notice &amp; Copyright</a>
</li>
<li>
<a href="http://www.uchc.edu/directions/index.html" >Maps &amp; Directions</a>
<a href="http://health.uconn.edu/plan-your-visit/locations-and-directions/">Maps &amp; Directions</a>
</li>
<!-- <li>
<a href="http://www.uchc.edu/contact/index.html">Contact Us</a>
<a href="http://health.uconn.edu/contact-us/">Contact Us</a>
</li> -->
<li>
&copy; UConn Health
Expand Down