123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- {% load static %}
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8"/>
- <meta name="baidu-site-verification" content="codeva-y7kl5gdyM4"/>
- <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/>
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1, maximum-scale=2, user-scalable=no"
- />
- <meta
- name="description"
- content="CyberSicko.net"
- />
- <link rel="shortcut icon" href="{% static 'favicon.ico' %}">
- <meta name="keywords" content="Semantic-UI, Theme, Design, Template"/>
- <meta name="author" content="CyberSicko"/>
- <meta name="theme-color" content="#ffffff"/>
- <title>CyberSicko.NET</title>
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@200;300;400;500;600;700;900&display=swap"
- rel="stylesheet">
- <link
- rel="stylesheet"
- href="{% static 'semantic.min.css' %}"
- type="text/css"
- />
- <link
- rel="stylesheet"
- href="{% static 'photoswipe/photoswipe.css' %}"
- type="text/css"
- />
- {% if is_login %}
- <link href="https://unpkg.com/@wangeditor/editor@latest/dist/css/style.css" rel="stylesheet">
- {% endif %}
- <style type="text/css">
- p {
- font-size: 1.2em;
- }
- body {
- padding-top: 54px;
- -webkit-font-smoothing: antialiased;
- -moz-font-smoothing: grayscale;
- }
- .ui.borderless.menu {
- background-color: #f8f8f8;
- {#box-shadow: none;#} flex-wrap: wrap;
- border: none;
- padding-left: 0;
- padding-right: 0;
- }
- .ui.borderless.menu .header.item {
- font-size: 18px;
- font-weight: 400;
- }
- .ui.mobile.only.grid .ui.menu .ui.vertical.menu {
- display: none;
- }
- .ui.mobile.only.grid .ui.vertical.menu .dropdown.icon {
- float: unset;
- }
- .ui.mobile.only.grid .ui.vertical.menu .dropdown.icon:before {
- content: "\f0d7";
- }
- .ui.mobile.only.grid .ui.vertical.menu .ui.dropdown.item .menu {
- position: static;
- width: 100%;
- background-color: unset;
- border: none;
- box-shadow: none;
- }
- .ui.mobile.only.grid .ui.vertical.menu .ui.dropdown.item .menu {
- margin-top: 6px;
- }
- .ui.container > .ui.message {
- background-color: rga(238, 238, 238);
- box-shadow: none;
- padding: 5rem 4rem;
- margin-top: 1rem;
- }
- .ui.message h1.ui.header {
- font-size: 4.5rem;
- }
- .ui.message p.lead {
- font-size: 1.3rem;
- color: #333333;
- line-height: 1.4;
- font-weight: 300;
- }
- p > a > img {
- width: 100px;
- height: 100px;
- }
- {% block css %}
- {% endblock %}
- </style>
- </head>
- <body id="root">
- {% if is_login %}
- {% csrf_token %}
- {% endif %}
- <div class="ui tablet computer only padded grid">
- <div class="ui top fixed borderless fluid huge menu">
- <div class="ui container">
- <a href="/" class="header item"><img style="width: 7em;" src="{% static '/img.png' %}"/></a>
- <a href="{% url 'index' %}" class="{% if current_category == None %}
- active
- {% else %}
- {% endif %} item">主页</a>
- {% for item in category %}
- {# <li class="category_li"><a href="/category/{{ item.name }}?page=1">{{ item.name }}</a></li>#}
- <a class="{% if current_category != None and current_category == item.name %}
- active
- {% else %}
- {% endif %} item" href="/category/{{ item.name }}?page=1">{{ item.name }}</a>
- {% endfor %}
- <div class="right menu">
- <div id="dropdown1" class="ui dropdown item right">关联<i class="dropdown icon"></i>
- <div class="menu">
- <a class="item" href="http://git.cybersicko.net"><i class="gitlab icon"></i>GOGS</a>
- <a class="item" href="http://files.cybersicko.net"><i class="file icon"></i>Files</a>
- </div>
- </div>
- <a href="/login" class="item"> <i class="icon share square"></i>
- Sign in</a>
- </div>
- </div>
- </div>
- </div>
- <div class="ui mobile only padded grid">
- <div class="ui top fixed borderless huge fluid menu">
- <a href="/" class="header item"><img style="width: 7em;" src="{% static '/img.png' %}"/></a>
- <div class="right menu">
- <div class="item">
- <button class="ui icon toggle basic button">
- <i class="content icon"></i>
- </button>
- </div>
- </div>
- <div class="ui vertical borderless fluid menu">
- <a href="{% url 'index' %}" class="{% if current_category == None %}
- active
- {% else %}
- {% endif %} item">主页</a>
- {% for item in category %}
- {# <li class="category_li"><a href="/category/{{ item.name }}?page=1">{{ item.name }}</a></li>#}
- <a class="{% if current_category != None and current_category == item.name %}
- active
- {% else %}
- {% endif %} item" href="/category/{{ item.name }}?page=1">{{ item.name }}</a>
- {% endfor %}
- <a href="/login" class="item"> <i class="icon share square"></i>
- Sign in</a>
- <div id="dropdown1" class="ui dropdown item right">关联<i class="dropdown icon"></i>
- <div class="menu">
- <a class="item" href="http://git.cybersicko.net"><i class="gitlab icon"></i>GOGS</a>
- <a class="item" href="http://files.cybersicko.net"><i class="file icon"></i>Files</a>
- </div>
- </div>
- </div>
- </div>
- </div>
- {% block container %}
- {% endblock %}
- <footer style="margin-top: 50px" class="ui secondary segment">
- <div class="ui two column stackable grid">
- <div class="ten wide column">
- <img style="width: 8rem" src="{% static '/img.png' %}">
- <p> © 2023 - 2023 cybersicko.net - All Rights Reserved.</p>
- </div>
- <div class="six wide column">
- <div class="ui left aligned container" style="margin-top:10px">
- <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50019002503732"
- style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img
- src="{% static '/备案图标.png' %}" style="float:left;"/>
- <p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"> 渝公网安备
- 50019002503732号</p></a>
- <a rel="nofollow"
- href="http://beian.miit.gov.cn/publish/query/indexFirst.action"
- target="_blank"><p>皖ICP备2023011943号</p></a>
- </div>
- </div>
- </div>
- </footer>
- <script type="application/javascript" src="{% static 'js/jquery.min.js' %}"></script>
- <script type="application/javascript" src="{% static 'semantic.js' %}"></script>
- <script type="application/javascript" src="{% static 'photoswipe/photoswipe.umd.min.js' %}"></script>
- <script type="application/javascript" src="{% static 'photoswipe/photoswipe-lightbox.umd.min.js' %}"></script>
- <script>
- $('#search')
- .search({
- type: 'category',
- minCharacters: 3,
- apiSettings: {
- url: '/search?keywords={query}'
- }
- })
- var lightbox = new PhotoSwipeLightbox({
- gallery: '.extra.images',
- children: 'a',
- // dynamic import is not supported in UMD version
- pswpModule: PhotoSwipe
- });
- lightbox.init();
- $(document).ready(function () {
- $(".ui.toggle.button").click(function () {
- $(".mobile.only.grid .ui.vertical.menu").toggle(100);
- });
- $(".ui.dropdown").dropdown();
- });
- </script>
- {% block js %}
- {% endblock %}
- <script>
- </script>
- </body>
- </html>
|