19 lines
		
	
	
		
			657 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			657 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %} <!-- Add this for inheritance -->
 | |
| {% load i18n %}
 | |
| 
 | |
| {% block title %}{% trans "Oops, sorry, page not found (404)" %}{% endblock %}
 | |
| {% block pagetitle %}<span style="color:red">{% trans "Oops, sorry, page not found (404)" %}</span>{% endblock %}
 | |
| {% block content %}
 | |
| <div class="rug-embed__container">
 | |
|     <iframe class="rug-embed__iframe" src="https://www.youtube-nocookie.com/embed/WOdjCb4LwQY?controls=0" frameborder="0" allow="autoplay; clipboard-write; encrypted-media" allowfullscreen></iframe>
 | |
| </div>
 | |
| <style>
 | |
| .rug-breadcrumbs {
 | |
|     display:none
 | |
| }
 | |
| 
 | |
| .rug-layout__item.rug-width-m-8-24 {
 | |
|     display:none
 | |
| }
 | |
| </style>
 | |
| {% endblock %} |