Compare commits

...

3 Commits

Author SHA1 Message Date
c255fefb22
cd 2024-04-29 21:01:09 -07:00
c10f93f556
update contact page yet again 2024-04-29 16:50:54 -07:00
c48b2adef9
update emails 2024-04-29 15:10:37 -07:00
4 changed files with 36 additions and 17 deletions

20
.drone.yml Normal file
View File

@ -0,0 +1,20 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: fedora:39
commands:
- yum install --assumeyes openssh
- sh deploy.sh
environment:
HOST:
from_secret: HOST
SSH_KEY:
from_secret: SSH_KEY
trigger:
branch:
- main

10
deploy.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
set -e
echo $SSH_KEY | base64 -d >> /tmp/key
chmod -R 0600 /tmp/key
ssh -i /tmp/key -o StrictHostKeyChecking=no $HOST "cd /home/lizzy/mistymountains && git pull && git reset --hard origin/master && npm run build && sudo systemctl restart mmt"
rm /tmp/key

View File

@ -6,18 +6,9 @@
<div class="d-flex flex-row align-items-center border-darkish p-1">
<i class="bi bi-telephone"></i>
<div class="px-4">
<div class="border-darkish">
<a href="tel:12084994517">
<span>(208) 499 - 4517</span>
(Scheduling/Other)
</a>
</div>
<div>
<a href="tel:18334456077">
<span>(833) 445 - 6077 ext. 1</span>
(Billing/Insurance)
</a>
</div>
<a href="tel:12084994517">
<span>(208) 499 - 4517</span>
</a>
</div>
</div>
<div class="d-flex flex-row align-items-center border-darkish p-1">

View File

@ -85,19 +85,17 @@
</p>
</div>
<div class="border shadow bg-light py-2 col-lg-2 d-flex align-items-center flex-column m-2">
<h1><i class="bi bi-phone-fill"></i></h1>
<div><h1><i class="bi bi-phone-fill"></i></h1></div>
<p style="hyphens: auto;">
For scheduling and other: <a href="tel:12084994517">(208) 499 - 4517</a>
<br>
For billing and insurance: <a href="tel:18334456077">(833) 445 - 6077 ext. 1</a>
</p>
</div>
<div class="border shadow bg-light py-2 col-lg-2 d-flex align-items-center flex-column m-2">
<h1><i class="bi bi-envelope-fill"></i></h1>
<p style="hyphens: auto;">
For scheduling and other: <a href="mailto:lizmmt22@gmail.com">lizmmt22@gmail.com</a>
For billing: <a href="mailto:billing@mistymountainstherapy.com">billing@mistymountainstherapy.com</a>
<br>
Questions about MMT: <a href="mailto:jeffer@mistymountainsthreapy.com">jeffer@mistymountainstherapy.com</a>
For other questions: <a href="mailto:jeffer@mistymountainsthreapy.com">jeffer@mistymountainstherapy.com</a>
</p>
</div>
</div>