How to display the website logo, filing number, and copyright information on the frontend page?

Calendar 👁️ 92

The website's logo, filing number, and copyright information are the three essential elements that constitute a professional, trustworthy online image.They not only help with brand identification and promotion, but also are an important embodiment of complying with laws and regulations and enhancing the credibility of the website.As a system designed specifically for small and medium-sized enterprises and content operation teams, AnQiCMS (AnQiCMS) understands the importance of these details and provides an extremely convenient way to manage and display them.

Below, let's take a look together at how to elegantly display your Logo, filing number, and copyright information on the front end of the Anqi CMS website.


Step 1: Configure the information in the background.

All website's basic information, including Logo, filing number and copyright statement, can be managed uniformly in the AnqiCMS backend.

  1. Log in to the backend and go to the global settings.First, you need to log in to your AnQi CMS admin interface. In the left navigation menu, find and click on the “Backend settingsSelect thenGlobal Settings”. This is where you configure the core information of the website.

  2. Upload Website LogoOn the "Global Settings" page, you will see a name called"Website LOGOThe option. Click the upload button next to it, select the logo image you have carefully designed and upload it.It is recommended to choose a PNG format image with a transparent background to adapt to different website backgrounds.

  3. Enter the record numberIf your website has been registered in Mainland China, please fill in the registration number accurately in theRecord numberIn the "value" field, for example, "Beijing ICP preparation No. 12345678". Anqi CMS will automatically identify and process the filing number to generate clickable links on the front end, pointing to the National Ministry of Industry and Information Technology Government Service Platform (beian.miit.gov.cnThis is very helpful for enhancing the credibility of the website and is a legal requirement.

  4. Set copyright informationIn theCopyright informationIn the " field, you can fill in the copyright statement of the website, for example, "© 2023 你的公司名称. All Rights Reserved..This field is very flexible, it supports HTML content, which means you can add bold, links, even some simple styles, making your copyright statement richer and more personalized.

  5. Save configurationDon't forget to click the button at the bottom of the page after completing all settings,Saveto ensure your configuration takes effect.


Second step: call the information in the front-end template

After the back-end information configuration is complete, the next step is to display this information on the website front-end.The Anqi CMS uses Django template engine syntax, making content calls very intuitive.bash.htmlfile.

We will use the built-in of Anqi CMS.systemLabel to get these global settings.

  1. Show website logoThe logo is usually placed at the top of the website and is often used as the link to the homepage. You can call it in the template with the following code:

    <a href="{% system with name='BaseUrl' %}" class="header-logo">
        <img src="{% system with name='SiteLogo' %}" alt="{% system with name='SiteName' %}">
    </a>
    

    here,{% system with name='BaseUrl' %}Used to obtain the root address of the website, so that the Logo can click back to the homepage;{% system with name='SiteLogo' %}It will display the Logo image you uploaded; andalt="{% system with name='SiteName' %}"It is a good SEO practice, it will use the website name as alternative text for the Logo.

  2. Display the record numberThe record number is usually located at the bottom of the website and needs to point to the MIIT record query website. You can add similar code to your footer template.

    <p class="icp-info">
        <a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">{% system with name='SiteIcp' %}</a>
    </p>
    

    {% system with name='SiteIcp' %}Automatically retrieves the record number filled in on your backend.rel="nofollow"andtarget="_blank"It is a recommended attribute, the former tells the search engine not to track this link, and the latter ensures that the link opens in a new window.

  3. Displays copyright informationCopyright information is often found in the footer of websites. If you fill in HTML content in the "Copyright Information" field in the back-end (for example, it includes<strong>Label or link), remember to use it when calling the template|safeA filter that allows the browser to parse and display it correctly, rather than displaying the HTML code directly. At the same time, we can also dynamically display the current year to keep the copyright information up to date.

    <footer>
        <p>{% system copyrightText with name='SiteCopyright' %}{{ copyrightText|safe }}</p>
        <p>Copyright © {% now "2006" %} {% system with name='SiteName' %}. All Rights Reserved.</p>
    </footer>
    

    In this example,{% system copyrightText with name='SiteCopyright' %}{{ copyrightText|safe }}Get and safely display your custom copyright text. And{% now "2006" %}It will dynamically output the current year, saving the trouble of manual updates every year.{% system with name='SiteName' %}The website name was called again to make the copyright information more perfect.


By using the intuitive backend settings and flexible template tags of Anqi CMS, you can easily display the website's logo, filing number, and copyright information on the front end.This not only enhances the professionalism and credibility of the website, but also meets the relevant legal requirements.Whether it is brand display or compliance operation, AnQi CMS can provide you with strong support.


Frequently Asked Questions (FAQ)

1. Why did I set the Logo image in the background, but it doesn't display on the front-end page?In this case, please check several places first:

  • Did the image upload successfully:Confirm that the Logo image has been uploaded and saved in the background "Global Settings".
  • Template tags are correct:Check your frontend template file (such asbash.htmlor header/footer file), whether the{% system with name='SiteLogo' %}tag is used correctly. The case and spelling of the tag must be completely accurate.
  • Clear the cache:Try to clean up the "Update Cache" in the Anq CMS background, and also clear your browser's cache, or use private mode to access to ensure that the latest content is loaded.

2. What format should I fill in my filing number? Do I need a suffix?-1Do I need a suffix?You just need to fill in the "record number-1Append any suffix. The system ensures that the display and link are correct.

3. If I use HTML tags in the copyright information (for example<strong>),But the front-end directly displayed the code instead of the parsed effect, what should I do?

Related articles

How to configure and display a canonical URL to optimize search engine crawling?

It is crucial to ensure that search engines efficiently and accurately crawl and understand our content in website operation.Among them, the canonical URL is an indispensable SEO strategy.It can help us solve the problem of duplicate content, concentrate the page weight, and thus optimize the website's performance in search engines.AnQiCMS as a SEO-friendly and powerful content management system naturally also provides comprehensive specification link configuration options, allowing users to easily manage this important function.What is the canonical link

2025-11-08

How to set and display the SEO title, keywords, and description (TDK) of a website in AnQiCMS?

When building a website, Search Engine Optimization (SEO) is the key to ensuring that content is discovered by search engines and attracts potential visitors.And the SEO title (Title), keywords (Keywords), and description (Description), abbreviated as TDK, are one of the most basic and most important elements in website optimization.They directly affect the display and click-through rate of websites in search results.

2025-11-08

How to correctly display the breadcrumb navigation path on a web page?

Elegantly configure breadcrumb navigation in AnQiCMS: Improve user experience and SEO performance When you visit a website, breadcrumb navigation is like a considerate guide, it can clearly tell you where the current page is in the website structure.From the home page all the way to the page you are browsing, it not only helps users quickly understand the website hierarchy, but also makes it convenient for them to backtrack to the upper page.For the website's search engine optimization (SEO), a reasonable breadcrumb navigation can also help search engines better understand the website structure, thereby possibly bringing better crawling and ranking effects

2025-11-08

How to set and display the common areas of the website such as header, footer, and sidebar in AnQiCMS?

In website operation, the header, footer, and sidebar, etc., play a crucial role.They not only carry the brand image and navigation function, but also the key to improving user experience and content distribution efficiency.For those who use AnQiCMS, understanding how to efficiently set up and display these areas will greatly enhance the professionalism and operational convenience of the website.AnQiCMS as an enterprise-level content management system based on the Go language, has fully considered the flexibility and scalability of templates from the very beginning.This means, whether it is to build a simple corporate website

2025-11-08

How to manage and display image resources, and categorize them in AnQiCMS?

## Secure CMS: The Art of Fine Management and Diversified Display of Image Resources In a content management system, images act as the soul of visual content, and the efficiency of their management and display directly affects the overall quality and user experience of the website.AnQi CMS understands this and provides users with a comprehensive and flexible image resource management solution, from upload and storage to intelligent processing, and to flexible display in various scenarios, striving to achieve the ultimate.### Centralized management of image resources

2025-11-08

How to display the user submitted comment list on a website and support pagination?

Displaying user comments on the website and supporting pagination is an important aspect of enhancing content interactivity and user experience.AnQiCMS provides flexible template tags and data management features, allowing us to easily meet this requirement.Below, let's look at how to operate step by step. ### Comment feature: Make content more vibrant We all know that user comments are a reflection of the vitality of website content.They not only bring real user feedback to the website, but also effectively increase the freshness of the page and the attention of search engines.

2025-11-08

How to ensure that AnQiCMS multi-site content is independent and displayed correctly?

When operating multiple websites, we often face a core challenge: how to ensure that each site's content is independently operated and accurately displayed without confusion or misplacement.AnQiCMS (AnQiCMS) is a system designed for multi-site management and provides a well-considered solution in this regard, allowing us to comfortably expand different brands or business branches.**The foundation of building an independent site: from deployment to backend management** When we decide to build multiple sites with Anqi CMS, we start laying the foundation for content independence from the deployment phase.

2025-11-08

How to use a flexible content model to customize the front-end content display structure?

The Anqi CMS provides a very powerful core feature in content management, that is, its 'flexible content model'.This is not just about enabling us to publish traditional articles and product information, but more importantly, it gives us the ability to customize any content structure and display it on the website front-end in the way we want. ### Understanding the Core Value of Flexible Content Models In traditional CMS systems, we are often limited by predefined content types, such as being able to publish only "articles" and "products", which seems inadequate when facing diverse business needs. For example

2025-11-08