Skip to content

Commit 3d3887c

Browse files
committed
Test deploy branding
1 parent ebfedff commit 3d3887c

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

etsd/branding/.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
### Django ###
2+
*.log
3+
*.pot
4+
*.pyc
5+
__pycache__/
6+
local_settings.py
7+
*.pyc
8+
*.swp
9+
*.swo
10+
*.bz
11+
*.b
12+
*.db
13+
.idea
14+
.vagrant
15+
local.py
16+
db.sqlite3
17+
media
18+
.vs
19+
node_modules
20+
dovenv2
21+
etsd/branding/templates/*
22+
!etsd/branding/templates/.gitkeep
23+
client/node_modules

fabfile.py

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ def pull():
3030

3131
def work():
3232
"Do work on server (copy settings, migrate and run collect static)"
33+
with cd(env.directory + "/etsd/branding"):
34+
run("https_proxy={0} git fetch origin".format(FAB_PROXY))
35+
run("git merge origin/master")
36+
3337
with cd(env.directory):
3438
requirements_txt = "requirements/" + env.env + ".txt"
3539
if os.stat(requirements_txt).st_size > 0:

templates/partials/_footer.html

+15-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,20 @@ <h4>TEST VERSION</h4>
88
</div>
99
</div>
1010
{% endif %}
11-
<div class='row pl-0 pr-0 ml-0 mr-0'>
12-
<div class="col-md-12">
13-
<div>Copyright &copy; 2021 &lt;SP&gt;</div>
11+
<small>
12+
<div class="row pl-0 pr-0 ml-0 mr-0">
13+
<div class="col-md-12 ">
14+
Η ιστοσελίδα έχει αναπτυχθεί με χρήση Ανοιχτού Λογισμικού από τη Διεύθυνση Ηλεκτρονικής Διακυβέρνησης και Επικοινωνιών του ΥΝΑΝΠ/ΛΣ-ΕΛΑΚΤ
15+
</div>
1416
</div>
15-
</div>
17+
<div class="row">
18+
<div class="col-md-12">
19+
<center>Copyright © 2021 &lt;<a class="" href="http://www.hcg.gr">ΛΣ-ΕΛ.ΑΚΤ</a>&gt;
20+
- <a target="_blank" href="https://www.hcg.gr/documents/863/all_cookies.pdf">Πολιτική Cookies Φορέα</a>
21+
- <a target="_blank" href="https://www.hcg.gr/el/epikoinwnia/gdpr/?slug=dgul">Προσωπικά δεδομένα</a>
22+
</center>
23+
</div>
24+
</div>
25+
</small>
26+
1627
</footer>

0 commit comments

Comments
 (0)