mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
13 lines
325 B
PHP
13 lines
325 B
PHP
<?php
|
|
|
|
$devPortalPages = array(
|
|
{% for page_filename, page_url in target.link_subs.items() %}
|
|
{% set wp_page_id = page_url[:-1]|replace("https://ripple.com/build/", "") %}
|
|
{% if "/" not in wp_page_id and "-tool" not in wp_page_id %}
|
|
'{{wp_page_id}}' => '{{page_filename}}',
|
|
{% endif %}
|
|
{% endfor %}
|
|
);
|
|
|
|
?>
|