<?php get_header(); ?>
<?php get_template_part('template-parts/header-flexible-sections');
$taxonomy = 'library_cat';
$terms = get_terms( array(
'taxonomy' => 'library_cat',
'hide_empty' => false,
) );
?>
<?php if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) : ?>
<section class="library-archive">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="library-list">
<?php foreach ( $terms as $term ) : ?>
<?php
$image = get_field( 'image', 'term_' . $term->term_id );
$image = $image ? $image['url']: "";
$title = $term->name;
$description = $term->description;
$link = get_term_link( $term );
set_query_var( 'image', $image );
set_query_var( 'link', $link );
set_query_var( 'title', $title);
set_query_var( 'description', $description );
get_template_part( 'template-parts/loop-library' );
?>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php get_template_part('template-parts/flexible-sections'); ?>
<?php get_footer(); ?>
"Cannot access offset of type string on string"
*/
$template = apply_filters( 'template_include', $template );
$is_stringy = is_string( $template ) || ( is_object( $template ) && method_exists( $template, '__toString' ) );
$template = $is_stringy ? realpath( (string) $template ) : null;
if (
is_string( $template ) &&
( str_ends_with( $template, '.php' ) || str_ends_with( $template, '.html' ) ) &&
is_file( $template ) &&
is_readable( $template )
) {
/**
* Fires immediately before including the template.
*
* @since 6.9.0
*
* @param string $template The path of the template about to be included.
*/
do_action( 'wp_before_include_template', $template );
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
"/www/ooginoog_568/public/wp-includes/template-loader.php"
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
"/www/ooginoog_568/public/wp-blog-header.php"
| Key | Value |
| query_vars | array:2 [ "paged" => "9" "post_type" => "library_pt" ] |
| query_string | "paged=9&post_type=library_pt"
|
| request | "library/page/9"
|
| matched_rule | "library/page/([0-9]{1,})/?$"
|
| matched_query | "post_type=library_pt&paged=9"
|
| did_permalink | true
|
| Key | Value |
| query | array:2 [ "paged" => "9" "post_type" => "library_pt" ] |
| query_vars | array:10 [ "paged" => 9 "post_type" => "library_pt" "fields" => "all" "cache_results" => true "update_post_term_cache" => true "lazy_load_term_meta" => true "update_post_meta_cache" => true "posts_per_page" => 10 "comments_per_page" => "50" "order" => "DESC" ] |
| tax_query | WP_Tax_Query {#9960} |
| meta_query | WP_Meta_Query {#9966} |
| queried_object | WP_Post_Type {#8697} |
| request | """ SELECT SQL_CALC_FOUND_ROWS wp_posts.ID\n \t\t\t\t\t FROM wp_posts JOIN wp_icl_translations wpml_translations\n \t\t\t\t\t\t\tON wp_posts.ID = wpml_translations.element_id\n \t\t\t\t\t\t\t\tAND wpml_translations.element_type = CONCAT('post_', wp_posts.post_type) \n \t\t\t\t\t WHERE 1=1 AND ((wp_posts.post_type = 'library_pt' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'acf-disabled'))) AND ( ( ( wpml_translations.language_code = 'en' OR (\n \t\t\t\t\twpml_translations.language_code = 'nl'\n \t\t\t\t\tAND wp_posts.post_type IN ( 'post','page' )\n \t\t\t\t\tAND ( ( \n \t\t\t( SELECT COUNT(element_id)\n \t\t\t FROM wp_icl_translations\n \t\t\t WHERE trid = wpml_translations.trid\n \t\t\t AND language_code = 'en'\n \t\t\t) = 0\n \t\t\t ) OR ( \n \t\t\t( SELECT COUNT(element_id)\n \t\t\t\tFROM wp_icl_translations t2\n \t\t\t\tJOIN wp_posts p ON p.id = t2.element_id\n \t\t\t\tWHERE t2.trid = wpml_translations.trid\n \t\t\t\tAND t2.language_code = 'en'\n AND (\n p.post_status = 'publish' OR p.post_status = 'private' OR \n ( p.post_type='attachment' AND p.post_status = 'inherit' )\n )\n \t\t\t) = 0 ) ) \n \t\t\t\t) ) AND wp_posts.post_type IN ('post','page','attachment','wp_block','wp_template','wp_template_part','wp_navigation','agenda_pt','news_pt','library_pt','faq_pt' ) ) OR wp_posts.post_type NOT IN ('post','page','attachment','wp_block','wp_template','wp_template_part','wp_navigation','agenda_pt','news_pt','library_pt','faq_pt' ) )\n \t\t\t\t\t \n \t\t\t\t\t ORDER BY wp_posts.post_date DESC\n \t\t\t\t\t LIMIT 80, 10 """ |
| post_count | 10
|
| current_post | -1
|
| before_loop | true
|
| current_comment | -1
|
| found_posts | 100
|
| max_num_pages | 10
|
| is_archive | true
|
| is_paged | true
|
| is_post_type_archive | true
|
| Key | Value |
| ID | 6184
|
| post_author | "2"
|
| post_date | "2025-03-06 12:08:56"
|
| post_date_gmt | "2025-03-06 11:08:56"
|
| post_content | """ <!-- wp:post-date /--><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>During a night out in Arnhem, Bram gets into an argument with a friend on a patio. A stranger starts to interfere. At one point, the man walks away, but suddenly he turns around and hits Bram in the face with a large glass. The glass shatters, and Bram is seriously injured. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Bram recalls: “I walked toward the Korenmarkt. I had my hand over my eye, so I couldn’t see much anyway. Everything was covered in blood. But you don’t realize how serious the situation is because you’re pumped full of adrenaline. I was in shock. It didn’t even occur to me to call the police. I did talk to some people, though. They were absolutely terrified. I went limp and lay down on the ground. A bouncer called the ambulance.”</p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>The paramedics immediately realized something was seriously wrong. They took him to Radboudumc in Nijmegen. “First, they stitched up everything around my eye. I had three large wounds on my face. Because I had been drinking, they couldn’t operate on my eye that same evening.” The beer glass had pierced his upper eyelid and cut open the eyeball. There was a tear in Bram’s eyeball. The next day, the doctors removed the glass from his eye and sutured it shut. The eye needed rest. Two weeks later, he would undergo another operation to remove the excess blood. The doctors were hopeful that his vision would return after that second surgery. “But keep in mind that this might not happen,” the doctors warned. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>After three days, Bram was allowed to go home, and he immediately filed a police report regarding the assault. There were few police officers on the streets the night of the fight, so it would be difficult to find the perpetrator. Once home, his eye didn’t feel right. “When I moved my good eye, I felt intense shooting pains in the eye that had been operated on. It felt as if there was still glass in it. But the hospital assured me that this was just the pain from the stitches. Two weeks later, during surgery, it turned out I was right. There was still glass in the eye, and it had sliced through my entire retina.” </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>A Mess of Trouble</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>When Bram came out of anesthesia, there were only people with worried expressions standing around his bed. The doctors told him that part of his eye had been removed. Bram was still groggy from the anesthesia and didn’t immediately realize the seriousness of what the doctor was telling him. This possibility hadn’t been discussed with him beforehand. Bram: “I asked if I could see my removed eye. I would have liked to put it in a jar. Maybe a morbid idea. But it is, after all, a part of yourself. The doctors said it was ‘a mess’ in my eye socket and that’s why they had to pick the eye out in tiny pieces.” </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>Bram the Pirate</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>After the surgery, Bram hit rock bottom. “I wanted to train to become a sports instructor, but I soon realized that the sports I wanted to teach—like snowboarding and mountain biking—were no longer an option. I had to wait and see what I could still do with just one eye. On top of that, I had to move out of my house. I ended up on the street. My relationship with my parents wasn’t good. I just kept getting into more trouble. I became depressed, started smoking too much weed, and experimenting with other drugs. Through the crisis shelter, I went to a facility where they were supposed to help me. But it didn’t work. I felt very unsafe there because the other patients had serious problems and there were constant incidents. I kept sliding further and further down. One day, I left with nothing but a bag of clothes. I was able to stay with friends. They took care of me for half a year. I’m so incredibly grateful to these people. Without them, I don’t know how things would have turned out for me. Back then, I was a ticking, self-destructive time bomb. I had so much anger inside me about the whole situation with that eye.” <br/><br/>In these turbulent times, his friends often call him a pirate or a captain, referring to his prosthetic limb and eye patch. That’s why he had a hook tattooed on his hand. “I didn’t have that perfect body anymore anyway. I also branded myself with a P and got a wood motif tattooed on my leg. Now I was a ‘real’ pirate. Looking back, I’ve never regretted it.” </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>Dentures as Jewelry</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Things took a turn for the better when, at the age of 25, he found a place of his own and was able to begin recovering physically and coming to terms with the loss of his eye. Bram started exercising and tried to live a healthier lifestyle. In addition to tattooing, he also developed an interest in making jewelry. “I wanted something special as an ocular prosthesis, because I really don’t like standard artificial eyes at all. The idea of trying to restore something that will never be 100% the same again bothers me. That’s why I started seeing my ocular prosthesis as a piece of jewelry.” </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Bram designed his first eye in Windows Paint and had a friend refine the design in Photoshop. He then took it to Bob, who was an ocularist in Nijmegen at the time, to have it made into a prosthetic eye. “From a distance, my first design looked like a normal brown eye, but when you got closer, you could see a golden compass on a brown background, with a skull inside it as well. My second design was a prosthesis featuring a silver chain with a Huguenot cross incorporated into it. It’s now a necklace again, because I gave the artificial eye—as a necklace—to my girlfriend. These days, I mainly make ocular prostheses with opals. I did try making the entire ocular prosthesis myself, but the epoxy I used wasn’t really good for my eye socket. Now I go to ocularist Jelmer Remmers. He incorporates the inserts I design (iris and pupil) into an ocular prosthesis. Sometimes people stare at me. The reactions vary widely, but they’re generally positive. Children, in particular, think my eye jewelry is really cool. Because of the way the light hits the gemstone, it sometimes looks as if there’s a little light inside it.” </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>Acceptance</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p><br/>The person responsible for the accident was never caught. Therefore, compensation for the damages cannot be recovered from that person. Bram did, however, receive a small victim compensation payment of €3,600 from the Violent Crimes Fund. “I’ve come to terms with the loss of my eye. By making eye jewelry, I’ve been able to fully accept the eye removal. I’m even a little proud of it. I actually think my two different eyes are very beautiful this way. I don’t feel ashamed as easily anymore. I don’t necessarily need to belong to a group. You learn from your mistakes.” </p>\n <!-- /wp:paragraph --> """ |
| post_title | "Bram has an eye for art"
|
| post_excerpt | "Bram’s eye was seriously injured in a fight. He was 21 at the time. The loss of his eye had a major negative impact on his life. Bram is doing well again now. He lives with his beloved Maria and their little son Aurelius, who is almost 1 year old. What makes his story even more special is that Bram designs his own artificial eyes. This is his story. "
|
| post_status | "publish"
|
| comment_status | "closed"
|
| ping_status | "closed"
|
| post_password | "" |
| post_name | "bram-has-an-eye-for-art"
|
| to_ping | "" |
| pinged | "" |
| post_modified | "2026-09-09 17:07:11"
|
| post_modified_gmt | "2026-09-09 15:07:11"
|
| post_content_filtered | "" |
| post_parent | 0
|
| guid | "https://ver-ooginoog.nl/bibliotheek/bram-has-an-eye-for-art/"
|
| menu_order | 0
|
| post_type | "library_pt"
|
| post_mime_type | "" |
| comment_count | "0"
|
| filter | "raw"
|
| Key | Value |
| wp-wpml_current_language | "en"
|
| Key | Value |
| SERVER_SOFTWARE | "nginx/1.31.3"
|
| REQUEST_URI | "/en/library/page/9/"
|
| USER | "ooginoog"
|
| HOME | "/www/ooginoog_568"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_CF_IPCOUNTRY | "US"
|
| HTTP_CF_WORKER | "kinsta.cloud"
|
| HTTP_KI_REQUEST_COLO | "185"
|
| HTTP_KI_BOT_CATEGORY | "aggressive_crawler"
|
| HTTP_KI_AI_CRAWLER | "yes"
|
| HTTP_KI_REALIP | "216.73.216.196"
|
| HTTP_X_KINSTA_EDGE_LB | "KCW"
|
| HTTP_X_KINSTA_EDGE_INCOMINGIP | "216.73.216.196"
|
| HTTP_CF_VISITOR | "{\"scheme\":\"https\"}"
|
| HTTP_KI_REQUEST_METAL | "43"
|
| HTTP_CF_DEVICE_TYPE | "desktop"
|
| HTTP_CF_CONNECTING_IP | "216.73.216.196"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_ACCEPT_ENCODING | "gzip, br"
|
| HTTP_CF_RAY | "a389f9cf19e1cf6a-CMH"
|
| HTTP_KI_UA_LOWERCASED | "mozilla/5.0 applewebkit/537.36 (khtml, like gecko; compatible; claudebot/1.0; +claudebot@anthropic.com)"
|
| HTTP_KI_VBOT_CATEGORY | "AI Crawler"
|
| HTTP_CDN_LOOP | "cloudflare; loops=1; subreqs=1"
|
| HTTP_CF_EW_VIA | "15"
|
| HTTP_X_USE_CUSTOM_EC_TTL | "true"
|
| HTTP_X_FORWARDED_FOR | "216.73.216.196"
|
| SCRIPT_FILENAME | "/www/ooginoog_568/public/index.php"
|
| REDIRECT_STATUS | "200"
|
| WP_ENVIRONMENT_TYPE | "production"
|
| KINSTA_CACHE_ZONE | "KINSTAWP"
|
| SERVER_NAME | "ver-ooginoog.nl"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "10.0.3.68"
|
| REMOTE_PORT | "" |
| REMOTE_ADDR | "216.73.216.196"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| HTTP_HOST | "ver-ooginoog.nl"
|
| HTTPS | "on"
|
| SERVER_PROTOCOL | "HTTP/2.0"
|
| DOCUMENT_ROOT | "/www/ooginoog_568/public"
|
| DOCUMENT_URI | "/index.php"
|
| SCRIPT_NAME | "/index.php"
|
| CONTENT_LENGTH | "" |
| CONTENT_TYPE | "" |
| REQUEST_METHOD | "GET"
|
| QUERY_STRING | "" |
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1788996574.8192
|
| REQUEST_TIME | 1788996574
|