Skip to main content

Location of the base templates

cd /usr/lib/ckan/default/src/ckan/ckan/templates

Whereas as the location of the plugin that displays the new template

cd /usr/lib/ckan/default/src/ckanext-{project}/ckanext/{project}/templates

To alter the home main page, edit the 

cd /usr/lib/ckan/default/src/ckanext-{project}/ckanext/{project}/templates/home/index.html

 

Related articles

Andrew Fletcher07 Oct 2024
Understanding and executing common Linux commands for CKAN administration
In this article, we will walk through a series of common Linux commands used for managing CKAN instances on an Ubuntu server with Nginx. We'll cover a variety of actions, explaining each command and its purpose. Whether you’re maintaining a CKAN instance, performing updates, or troubleshooting, this...
Andrew Fletcher29 Sep 2023
Installing CKAN from package on Ubuntu 20.04
 Install the CKAN packageBegin by cleaning up your server environment.  Do this by updating Ubuntu’s package index:sudo apt updateNow you can install the packages that CKAN requires (including ‘git’, which will allow you to install CKAN extensions):sudo apt install -y libpq5 redis-server...