mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-20 21:46:04 -05:00
MediaCMS frontend, initial commit
This commit is contained in:
3
templates/common/body-scripts.html
Normal file
3
templates/common/body-scripts.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{% load static %}
|
||||
|
||||
<script src="{% static "js/_commons.js" %}"></script>
|
||||
30
templates/common/head-links.html
Normal file
30
templates/common/head-links.html
Normal file
@@ -0,0 +1,30 @@
|
||||
{% load static %}
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{% static "favicons/apple-touch-icon.png" %}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{% static "favicons/favicon-32x32.png" %}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{% static "favicons/favicon-16x16.png" %}">
|
||||
<link rel="manifest" href="{% static "favicons/site.webmanifest" %}">
|
||||
<link rel="mask-icon" href="{% static "favicons/safari-pinned-tab.svg" %}" color="#009933">
|
||||
<link rel="shortcut icon" href="{% static "favicons/favicon.ico" %}">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="msapplication-config" content="{% static "favicons/browserconfig.xml" %}">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
{% if LOAD_FROM_CDN %}
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="preload" as="style">
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i&display=swap" rel="preload" as="style">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i&display=swap" rel="stylesheet">
|
||||
{% else %}
|
||||
<link href="{% static "lib/material-icons/material-icons.css" %}" rel="preload" as="style">
|
||||
<link href="{% static "lib/gfonts/gfonts.css" %}" rel="preload" as="style">
|
||||
<link href="{% static "lib/material-icons/material-icons.css" %}" rel="stylesheet">
|
||||
<link href="{% static "lib/gfonts/gfonts.css" %}" rel="stylesheet">
|
||||
{% endif %}
|
||||
|
||||
<link href="{% static "css/_commons.css" %}" rel="preload" as="style">
|
||||
<link href="{% static "css/_commons.css" %}" rel="stylesheet">
|
||||
|
||||
<link href="{% static "css/_extra.css" %}" rel="preload" as="style">
|
||||
<link href="{% static "css/_extra.css" %}" rel="stylesheet">
|
||||
|
||||
<link href="{% static "js/_commons.js" %}" rel="preload" as="script">
|
||||
14
templates/common/head-meta.html
Normal file
14
templates/common/head-meta.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<meta charset="utf-8">
|
||||
|
||||
<meta content="ie=edge" http-equiv="x-ua-compatible">
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport">
|
||||
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<meta name="slurp" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
|
||||
<meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
|
||||
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
|
||||
<meta name="yandexbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
|
||||
<meta name="baiduspider" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
|
||||
|
||||
<meta property="og:site_name" content="{{PORTAL_NAME}}" />
|
||||
Reference in New Issue
Block a user