Completed
Push — master ( 12be21...88e98c )
by Bart
17s
created

get_oe_email_footer_html()   A

Complexity

Conditions 1

Size

Total Lines 15

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
c 1
b 0
f 1
dl 0
loc 15
rs 9.4285
1
# -*- coding: utf-8 -*-
2
3
4
def get_oe_email_footer_html():
5
    return """
6
    <div style="float:left; width:100%;">
7
        Onroerend Erfgoed<br/>
8
        Phoenixgebouw  |  Koning Albert II-laan 19 bus 5  |  1210 Brussel <br/>
9
        <div style="width:100%">
10
            <div style="float:left; width:100%">
11
                <a href='https://www.onroerenderfgoed.be'>www.onroerenderfgoed.be</a>
12
            </div>
13
            <div style="float:left; width:100%">
14
                <img src="https://www.onroerenderfgoed.be/assets/img/logo-vlaanderen.png" height="100">
15
            </div>
16
        </div>
17
    </div>
18
    """
19
20
21
def get_oe_email_footer_plain():
22
    return """
23
    \n
24
    Onroerend Erfgoed\n
25
    Phoenixgebouw  |  Koning Albert II-laan 19 bus 5  |  1210 Brussel\n
26
    www.onroerenderfgoed.be\n
27
    \n
28
    """