How to display the filing number and copyright information at the bottom of the website in AnQiCMS?

Calendar 👁️ 72

During the operation of a website, whether it is to meet the requirements of laws and regulations or to enhance the professionalism and user trust of the website, clearly displaying the filing number and copyright information at the bottom of the website is an important aspect.AnQiCMS as an efficient content management system, provides a very flexible and intuitive way to configure and display these key information.

Next, we will introduce step by step how to set and display the filing number and copyright information at the bottom of the AnQiCMS website.

Step 1: Fill in the filing number and copyright information in the background

First, you need to log in to your AnQiCMS admin interface. This is the starting point for all website basic information configuration.

  1. Enter the global function settings:In the navigation menu on the left, find and click“Background Settings”Then select it from the dropdown options.Global function settingsThis page gathers the core configuration options of the website.
  2. Locate and fill in the information:On the "Global Function Settings" page, you will see multiple fields used to configure the basic information of the website.
    • Record number:Find“Record number”The corresponding input box. Here, you need to enter your website record number, for example, “Beijing ICP preparation No. XXXXXXXX”.Generally, you only need to fill in the main part of the filing number, and the system can automatically generate the complete link when it is called on the front end according to your template settings.
    • Copyright information:Next, you will see“Copyright information”The text box. You can enter the company's copyright statement here, for example “© 2024 XXX Company All Rights Reserved”.It is worth mentioning that AnQiCMS here supports you to input some basic HTML tags, such as using<strong>Or bold text<a href="...">Or add a link, the system can parse and display it well.

After completing the form, remember to click the 'Save' button at the bottom of the page to ensure that your changes are recorded by the system.

Step 2: Modify the template file to display information.

Just filled in the information in the background, the website front end cannot display automatically. We need to modify the template file to tell AnQiCMS where and how to display this content.

AnQiCMS uses a template engine syntax similar to Django, which makes modifying template files very intuitive.The page structure of a website is usually composed of a series of template files, and the common part of the website at the bottom (such as filing number and copyright information) is usually concentrated in a common template file, which can ensure that all pages are displayed uniformly.

  1. Locate the public footer template file:

    • You need to access your AnQiCMS installation directory through an FTP tool or file manager.
    • Enter/templateFolder, this is where all your website themes are stored. Select the theme folder you are currently using.
    • In this theme folder, there is usually a public template file responsible for the content at the bottom of the page, which may be namedbash.html(If your template centralizes common elements like headers and footers in a basic file), orpartial/find similar in the directoryfooter.htmlSelect a file that best represents the footer area of your website for modification.
  2. Enter the filing number information:Open the bottom template file you find. At the location where you want to display the filing number, it is usually<footer>Insert the following code snippet inside the tag: “`twig

Related articles

How to display the name and link of the current article's category in a frontend template?

In website content operation, the classification information of articles not only helps users quickly understand the content attribution, but also is the key to improving the website navigation experience and search engine optimization (SEO) effect.For friends who use AnQiCMS to build websites, it is a very practical and basic requirement to accurately display the name of the category to which each article belongs and provide a link.AnQiCMS provides powerful and flexible template tags, allowing us to easily achieve this function.### Skillfully Utilize `archiveDetail`

2025-11-07

Does AnQiCMS website support automatically converting uploaded images to WebP format to speed up display speed?

The loading speed of a website is an important factor for user experience and search engine optimization.Among them, images play an important part in the page content, and their loading efficiency has a significant impact on the overall performance of the website.WebP is a modern image format, compared to traditional JPEG, PNG, it can provide similar or even higher image quality with smaller file size, thereby significantly speeding up web page loading speed.AnQiCMS as a content management system that focuses on efficiency and performance, fully considers the optimization needs of the website in image processing.For "AnQiCMS"

2025-11-07

How to display custom field content of different content models in the frontend template?

The content model feature of AnQiCMS brings great flexibility to website operations, allowing us to define various personalized content structures according to our actual business needs.Whether it is an article, product, event, or any other custom content type, we can add unique fields for it.How can we flexibly display custom fields in the content model on the website front-end template?Let's explore this practical skill together. ### Understanding AnQiCMS's Content Model and Custom Fields Using AnQiCMS

2025-11-07

How to implement batch replacement of specific keywords in article content and display it on the front end in AnQiCMS?

In the daily work of content operation, we often encounter the need to make uniform adjustments to a large amount of article content.This may involve updating the brand name, correcting industry terminology, unify the product model, and even adjusting keyword density for SEO purposes.Manually modifying hundreds or even thousands of articles one by one is undoubtedly a huge task and is prone to errors.AnQiCMS provides a very practical feature that can help us efficiently implement batch replacement of specific keywords in article content and ensure that these changes are displayed correctly on the website front-end.Why do you need to replace keywords in articles in bulk

2025-11-07

How to add watermarks to images on the AnQiCMS website to protect original content?

In today's increasingly rich digital content, protecting the copyright of original works is particularly important, especially for visual content such as images.When your website publishes a large number of carefully crafted images, if they are not protected, it is easy for others to copy and repost them arbitrarily, which not only infringes on your labor results but also weakens the uniqueness of the content.Adding a watermark to an image is a simple and effective means of copyright protection, which can clearly assert ownership of the content without affecting the beauty of the image, effectively deterring unauthorized use.Anqi CMS as a highly efficient

2025-11-07

How to implement keyword search and filtering display on article list or search result pages?

How to allow visitors to quickly find the content they need among the vast amount of information on our website is undoubtedly the key to improving user experience and the effectiveness of content marketing.AnQiCMS (AnQiCMS) knows this and therefore provides a powerful and flexible mechanism to help us easily implement keyword search and content filtering functions on article lists or search result pages.The implementation of this feature mainly revolves around the core template tags of AnQi CMS, allowing us to transform the content of the background management into a user-friendly interactive interface through the exquisite design of the frontend template.###

2025-11-07

How to get and display the Tag list of articles in the front-end template of AnQiCMS?

AnQiCMS as an efficient and flexible content management system, provides a wealth of features to help operators manage and display website content.Among them, the Tag tag function of the article is an important factor for optimizing content organization, improving user experience and SEO effects.Understand how to obtain and display these tags in front-end templates, which is crucial for building a website with comprehensive functions.### In AnQiCMS backend management tags Before delving into the front-end template, let's briefly review how tags work in the AnQiCMS backend

2025-11-07

How to display a custom page template independently on a specific page (such as About Us)?

Hello! When using AnQi CMS to build a website, we often encounter such needs: some specific pages, such as 'About Us', 'Contact Us', or some special topic pages, need to have a completely different layout and design from other pages on the website.Luckyly, AnQi CMS provides a very flexible solution for this, allowing you to easily specify independent custom templates for these pages.AnQi CMS with its efficient features based on the Go language and support for Django template engine syntax, brings great convenience and customizability to content display

2025-11-07