Bloodcall serves ads only on the public homepage (index.php) and only when ads are explicitly enabled by the site administrator. Administrative and functional pages (admin panel, API endpoints, form handlers) do not display ads.
Ads are disabled by default. To enable ads, the administrator must update the site configuration.
For best social preview compatibility, generate a 1200×630 PNG from the included SVG. Run one of these commands on your server (choose one installed):
# Using rsvg-convert (librsvg):
rsvg-convert -w 1200 -h 630 /path/to/wwwroot/bloodcall.com/assets/og-image.svg -o /path/to/wwwroot/bloodcall.com/assets/og-image.png
# Or using ImageMagick (convert). Increase density for better text rendering:
convert -background white -density 150 /path/to/wwwroot/bloodcall.com/assets/og-image.svg -resize 1200x630 -quality 90 /path/to/wwwroot/bloodcall.com/assets/og-image.png
After creating /assets/og-image.png, social crawlers will typically pick it up. You can also set $CONFIG['site']['og_image'] in config.php to point to a custom image.