File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,14 @@ def build_site():
148148 else :
149149 raise FileNotFoundError (f"CSS file not found: { css_source } " )
150150
151+ # Copy favicon
152+ favicon_source = assets_dir / "favicon.ico"
153+ favicon_dest = site_dir / "assets" / "favicon.ico"
154+ if favicon_source .exists ():
155+ shutil .copy2 (favicon_source , favicon_dest )
156+ else :
157+ print (f"Warning: Favicon not found: { favicon_source } " )
158+
151159 print (f"Site built successfully! Generated { len (xls_docs )} XLS documents." )
152160
153161 # Count by status for reporting
Original file line number Diff line number Diff line change 1515 <!-- Dynamic page title - can be overridden by child templates -->
1616 < title > {% block title %}{{ title }}{% endblock %}</ title >
1717
18+ <!-- Favicon -->
19+ < link rel ="icon " href ="{{ base_url }}/assets/favicon.ico " type ="image/x-icon ">
20+
1821 <!-- Main stylesheet with XRPL.org themed styling -->
1922 < link rel ="stylesheet " href ="{{ base_url }}/assets/style.css ">
2023
You can’t perform that action at this time.
0 commit comments