{# Copyright (C) 2019 MATOBA Akihiro This software is licensed as described in the file COPYING, which you should have received as part of this distribution. #} # extends 'prefs.html' # block preftitle ${_("User Style")} # endblock preftitle # block prefpanel

Contents below will be injected on all pages.


your own stylesheet like:

a.owner_is_${req.authname or 'somebody'} {
    border: maroon thin solid;
}


your own script like:

document.addEventListener("DOMContentLoaded",function(){
    console.dir(this);
});
# endblock prefpanel