How to display the website's logo and filing information?

Calendar 👁️ 85

In website construction, the website logo and filing information are indispensable components.The logo is not only a visual identifier of a brand, helping users quickly recognize and remember your website, but also the record information reflects the compliance and authority of the website, especially in mainland China, website record is the basis for legal operation.AnQi CMS is an efficient and easy-to-use content management system that fully considers these core needs and provides a simple and clear way to configure and display these key information.


Configure Logo and filing information in the Anqi CMS backend

First, you need to log in to the Anqi CMS backend, navigate to the "Backend Settings" in the left menu, and then click the "Global Function Settings".This page collects the basic information configuration of the website, including the logo and filing number.

On the global feature settings page, you will see a setting item named "website logo".This is the place to upload your website brand logo. Just click the upload button and select the logo image file you have prepared.Suggest uploading a high-resolution logo to ensure good display on different devices.

Right after, you will find the 'Record Number' field. If your website has been recorded in the Mainland of China, please fill in your record number here (for example: Beijing ICP preparation XXXXXXXX number).The Anqi CMS, when called from the front end, usually generates a link to the Ministry of Industry and Information Technology (MIIT) government service platform based on this filing number, which is crucial for the website's compliance.

In addition, on this page, you can also configure the "site name", which usually appears as a suffix of the web page title and is an important part of SEO optimization.The 'Copyright Information' field is used to fill in the copyright statement of your website, which is usually displayed in the website footer and also helps to enhance the professional image of the website.

Display the Logo and filing information in the website template

After configuring the background information, the next step is to display this information on the website front-end.The Anqi CMS adopts a template engine syntax similar to Django, allowing you to flexibly control the presentation of website content.Website template files are usually stored in/templateUnder the directory, you need to edit the corresponding template to insert the Logo and filing information. The system provides a convenientsystemLabel, used specifically to call the background configuration global information.

Show website logo

The website logo is usually displayed in prominent locations such as the header or footer. To display the logo image on the website, you can usesystemlabel and specifyname="SiteLogo". Additionally, to ensure SEO-friendliness and accessibility, it is strongly recommended to add the Logo image attributealtproperty, which can be utilizedname="SiteName"to obtain the website name asalt.

<img src="{% system with name="SiteLogo" %}" alt="{% system with name="SiteName" %}" />

Place this line of code where you want the logo to appear, such as on the websitebase.htmlorpartial/header.htmlIn the template file, the website logo will be displayed normally

Display the filing information

Registration information is generally displayed in the footer of a website. To maintain compliance and facilitate visitor inquiries, the filing number is usually linked to the Ministry of Industry and Information Technology's government service platform. You can usesystemlabel and specifyname="SiteIcp"To obtain the record number and combine it with HTML's<a>tag to create a link.

<p>
    <a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">{% system with name="SiteIcp" %}</a>
    &copy; {% now "2006" %} {% system with name="SiteName" %}. All Rights Reserved
</p>

In the coderel="nofollow"attribute helps to tell the search engine not to pass weight to the record link, andtarget="_blank"Open the link in a new tab. The copyright year can be used{% now "2006" %}The tag dynamically retrieves the current year to keep it up to date. In addition, you can also use{% system with name="SiteCopyright" %}Label to display the copyright statement set in the background to supplement the footer information.


Through the backend configuration and template tags provided by Anqi CMS, you can easily manage and display the website's logo and filing information, which not only enhances the brand image and professionalism of the website but also ensures the legal and compliant operation of the website.The entire process is intuitive and convenient, even for users without a technical background can quickly get started.

Frequently Asked Questions (FAQ)

1. After uploading the logo, why is it not displayed on the website front end or is the old logo displayed instead?

This is usually due to browser or system cache.You can try clearing your browser cache or log in to the Anqi CMS backend, click the 'Update Cache' feature at the bottom of the left-hand menu to refresh the system cache.If it still does not display, please check whether the Logo file has been successfully uploaded and whether the code that calls the Logo in the template is correct.

2. Can the link of the record number be customized to other pages?

Of Security CMS{% system with name="SiteIcp" %}The label is generated by default based on the filing number to create a standard link to the Ministry of Industry and Information Technology's government service platform. If you have special requirements to link to other pages, you can manually modify the template in the<a>label'shrefProperty, but please note that this may affect the display of the website's compliance.

3. Where should the calling code for these Logo and record information be placed in the website template?

The website logo is usually placed in the header part of the website, or on the websitebase.htmlIn the main template file, this can be displayed uniformly on all pages.The record information is conventionally placed at the footer of the website, ensuring it is visible at the bottom of all web pages.This helps maintain the consistency of the website layout and user experience.

Related articles

How to implement adaptive, code adaptation, and independent template display for PC and mobile terminals in AnQiCMS?

In the era when mobile internet dominates, whether a website can provide a consistent and high-quality experience across different devices is directly related to user retention and brand image.AnQiCMS fully understands the needs of users for multi-platform experience, and therefore integrated flexible and diverse template display modes from the beginning of system design, helping users easily cope with challenges of various terminals such as PC, mobile phone, and so on.AnQiCMS provides three core template display modes, namely: adaptive mode, code adaptation mode, and independent template mode for PC and mobile terminals.These three modes have their respective focuses

2025-11-07

How to customize the overall display template of AnQi CMS?

AnQi CMS provides a flexible and powerful template customization mechanism, allowing you to create a unique website style according to your actual needs.No matter whether you want to adjust the overall layout or display personalized design for specific content, Anqi CMS can provide clear paths and rich tools to support your creativity.One of the core advantages of AnQi CMS is its template engine.It adopts syntax similar to Django and Blade, which allows those familiar with web development to get started quickly.This syntax is intuitive and easy to understand, outputting data through `{{variable}}`

2025-11-07

How to correctly display the `hreflang` tag in a multilingual site for search engine guidance?

In today's globalized digital age, multilingual support has become a basic requirement for websites to reach a wider audience.However, providing different language versions of content is not enough, we also need to ensure that search engines can correctly understand the relationships between these different versions, so that users can be directed to the content most suitable for their language and region.This is where the `hreflang` tag comes into play.For websites built using AnQiCMS, correctly configuring the `hreflang` tag is a key step in improving international SEO performance

2025-11-07

How to display the table of contents (ContentTitles) in the front-end template?

In the daily operation of websites, especially when publishing long articles, adding a clear table of contents (or content navigation) is crucial for improving user experience.It can not only help visitors quickly understand the structure of the article, conveniently jump to the chapters of interest, but also optimize the page SEO performance to a certain extent.AnQiCMS provides a very practical feature that allows us to easily implement the directory display of article content in the front-end template.### Understanding how AnQiCMS generates article contents AnQiCMS while processing article content

2025-11-07

How to configure and display the website name and copyright information in AnQi CMS?

A website's name and copyright information is an important embodiment of its brand image and legal attribution.In AnQiCMS (AnQiCMS), these core elements are configured and displayed flexibly and intuitively, which can help website operators manage easily, ensuring the professionalism and compliance of the website. ### Configure website basic information In AnQiCMS, the basic configurations such as website name, copyright information, and so on are mainly concentrated in the "Global Function Settings" area of the background.Here is like the 'control center' of your website, centrally managing many core parameters.1. **Website Name**

2025-11-07

How to retrieve and display the contact information set in the background (such as phone number, email, WeChat)?

In website operation, clearly displaying contact information is crucial for enhancing user trust and promoting interaction.Whether it is to consult products, seek support, or engage in business cooperation, convenient contact channels can greatly improve conversion rates.AnQiCMS (AnQiCMS) understands this and provides flexible and powerful features, allowing you to easily obtain and display various contact information in website templates.Next, let's take a look at how to display the contact information, such as phone, email, WeChat, etc., set in the background of Anqi CMS, naturally and smoothly on your website

2025-11-07

How to configure and display SEO title, keywords, and description (TDK) on the website homepage?

In website operation, the search engine optimization (SEO) of the homepage is crucial.A well-configured SEO title, keywords, and description (TDK) can significantly improve the visibility of a website in search engine results pages (SERP), attracting more potential visitors.AnQiCMS (AnQiCMS) is a system designed for SEO-friendliness, providing an intuitive and convenient way to manage key information.This article will guide you to understand how to configure and display SEO title, keywords, and description on the homepage of your AnQiCMS website.--- ### One

2025-11-07

How to generate and display multi-level breadcrumb navigation in AnQi CMS?

In website content operation, a clear navigation path is crucial for user experience and search engine optimization.A good breadcrumb navigation can help users quickly understand the current page's position in the website structure and make it convenient for them to backtrack to the previous level or higher-level pages.AnQiCMS (AnQiCMS) fully understands this, therefore it provides a powerful and easy-to-use breadcrumb navigation feature that allows website administrators to easily generate and display multi-level breadcrumbs.The core of implementing breadcrumb navigation in Anqi CMS lies in its built-in `breadcrumb` tag

2025-11-07