Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattkenefick/21fb52fd98bf0a9bd7373f23cd08be9d to your computer and use it in GitHub Desktop.
Save mattkenefick/21fb52fd98bf0a9bd7373f23cd08be9d to your computer and use it in GitHub Desktop.
React Ideology
<?php
$stuff = "Something!";
?>
<head>
<title><?php echo $stuff ?></title>
<style>
<?php echo ".foo { bar: 10px }" ?>
</style>
</head>
<body></body>
<script>
document.querySelector("body").innerHTML = (function() {
return "Some language in javascript for no reason! Just like how the rest of this code is absolute garbage.";
})();
</script>
@justenh
Copy link

justenh commented Mar 30, 2016

Ha. A contrived example, but I get what your saying.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment