Skip to content

Instantly share code, notes, and snippets.

View renzy's full-sized avatar

Aaron Renzelmann renzy

  • Hoffman York
  • Milwaukee, WI
View GitHub Profile
@KonradIT
KonradIT / readme.md
Last active June 12, 2025 10:51
GoPro Studio for Linux
@mikedotexe
mikedotexe / drupal-8-get-frontpage-alias.php
Created June 20, 2017 18:57
Get homepage path of Drupal 8 site from configuration
<?php
use Drupal\Core\Config\Config;
// ...
$config = \Drupal::config('system.site');
$front_uri = $config->get('page.front');
$alias = \Drupal::service('path.alias_manager')->getAliasByPath($front_uri);