Browse Source

Logo personal

politica
Celestino Rey 1 year ago
parent
commit
2fc525cb32
3 changed files with 20 additions and 2 deletions
  1. +18
    -0
      ReymotaPy/servicios/reymotapy/static/images/reymota-logo.svg
  2. +1
    -1
      ReymotaPy/servicios/reymotapy/templates/_branding.html
  3. +1
    -1
      ReymotaPy/servicios/reymotapy/templates/_cabecera.html

+ 18
- 0
ReymotaPy/servicios/reymotapy/static/images/reymota-logo.svg View File

@ -0,0 +1,18 @@
<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg">
<!-- Fondo -->
<rect width="400" height="400" fill="#ffffff" />
<!-- Corona -->
<g transform="translate(100, 100) scale(2)">
<polygon points="50,150 75,50 100,150" fill="#FFD700" />
<polygon points="0,150 50,0 100,150" fill="#FFD700" />
<polygon points="100,150 125,50 150,150" fill="#FFD700" />
</g>
<!-- Letra R -->
<!--
<text x="100" y="360" font-family="Arial, sans-serif" font-size="400" fill="#000000" font-weight="bold">R</text>
-->
<text x="100" y="360" font-family="Open Sans" font-size="400" fill="#000000" font-weight="bold">R</text>
</svg>

+ 1
- 1
ReymotaPy/servicios/reymotapy/templates/_branding.html View File

@ -1,4 +1,4 @@
<div class="app-branding">
<a class="app-logo" href="{{ url_for('paginas.index') }}"><img class="logo-icon me-2" src="{{ url_for('static', filename='images/app-logo.svg') }}" alt="logo"><span class="logo-text">PORTAL</span></a>
<a class="app-logo" href="{{ url_for('paginas.index') }}"><img class="logo-icon me-2" src="{{ url_for('static', filename='images/reymota-logo.svg') }}" alt="logo"><span class="logo-text">PORTAL</span></a>
</div><!--//app-branding-->

+ 1
- 1
ReymotaPy/servicios/reymotapy/templates/_cabecera.html View File

@ -121,7 +121,7 @@
{% if current_user.is_authenticated %}
<a class="dropdown-toggle" id="user-dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false"><img src="{{ url_for('static', filename='images/user.png') }}" alt="user profile"></a>
{% else %}
<a class="dropdown-toggle" id="user-dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false"><img src="{{ url_for('static', filename='images/app-logo.svg') }}" alt="user profile"></a>
<a class="dropdown-toggle" id="user-dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false"><img src="{{ url_for('static', filename='images/reymota-logo.svg') }}" alt="user profile"></a>
{% endif %}
<ul class="dropdown-menu" aria-labelledby="user-dropdown-toggle">
{% if current_user.is_authenticated %}


Loading…
Cancel
Save