<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="112680" data-post-id="112680">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="AstonJ" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/AstonJ/120/15_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  AstonJ
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Yep, just to confirm, this is what Chris said:</p>
<blockquote>
<p>The initial request is just a plain old HTTP request and HTML response, so screen readers and crawlers will see the LiveView’s static HTML. After render, the browser reconnects and the LiveView process is spawned on the server.</p>
</blockquote> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="112680" data-batch-url="/posts/batch_likers">
                        4
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/lets-discuss-phoenix-liveview/16427/127">Post #126</a>
	                </div>
	            </div>
              <div id="likers-container-112680" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="112680"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #126"></div>
  </section>
</div>
    <div class="postbit" id="112709" data-post-id="112709">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="lee" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/120/13472_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  lee
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="125" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Not corporate, but government here. ^.^;</p>
<p>Although my last job (very much <em>big</em> corporate) had some terminals super locked down like that too though.</p>
<p>Not uncommon in my experiences… ^.^;</p>
</blockquote>
</aside>
<p>It is uncommon, though - statistically.</p>
<p>0.2 - 0.7% worldwide.</p>
<p>A company (or just an individual developer that values their time) building apps needs to consider whether a) that 0.2 - 0.7% represents their target demographic, and b) whether the have the time/resources/interest in creating (often large-scale, and sometimes unfeasible) workarounds for JS-only functionality to serve that traffic.</p>
<aside class="quote no-group" data-username="OvermindDL1" data-post="125" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>That is why should always ‘start’ with the basics so you know they work, then just ‘enhance’ after that with whatever pretty things or special features or so. Like I use GraphQL, but not on the client-page side. ^.^</p>
</blockquote>
</aside>
<p>GraphQL on the client-side is one of its major selling points.</p>
<p>In <a href="https://github.com/leebenson/reactql" rel="noopener nofollow ugc">ReactQL</a>, the out-the-box demo component I provide pulls stories from HackerNews via SSR and delivers the result in React-rendered HTML:</p>
<p></p><div class="lightbox-wrapper"><a class="lightbox" href="https://forum.elixirforum.com/uploads/default/original/2X/9/94e6e154daa525a27591cda40feb7f8d16758fa1.jpeg" data-download-href="https://forum.elixirforum.com/uploads/default/94e6e154daa525a27591cda40feb7f8d16758fa1" title="ss" rel="nofollow"><img src="https://forum.elixirforum.com/uploads/default/original/2X/9/94e6e154daa525a27591cda40feb7f8d16758fa1.jpeg" alt="ss" data-base62-sha1="lffk68aCQowjrc7e3M28BUSKIbn" width="577" height="533"><div class="meta"><svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use href="#far-image"></use></svg><span class="filename">ss</span><span class="informations">577×533 249 KB</span><svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use href="#discourse-expand"></use></svg></div></a></div><p></p>
<p>Subsequent requests to a GraphQL API server (or routing) are performed on the client, cutting out the need to round-trip to a server to rebuild HTML.</p>
<p>This leverages the capabilities of 99%+ of browsers in exactly what they were designed to do.</p>
<aside class="quote no-group" data-username="OvermindDL1" data-post="125" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Honestly such messages are <em>amazingly</em> rude to people that use screen readers. I saw one here go off on a rant once… &gt;.&gt;</p>
</blockquote>
</aside>
<p>Modern screen readers can parse JS.</p>
<p>From <a href="https://webaim.org/techniques/javascript/" class="inline-onebox" rel="noopener nofollow ugc">WebAIM: Accessible JavaScript - Overview of Accessible JavaScript</a> :</p>
<p><em>&gt; It is a common misconception that people with disabilities don’t have or ‘do’ JavaScript, and thus, that it’s acceptable to have inaccessible scripted interfaces, so long as it is accessible with JavaScript disabled. A 2012 survey by WebAIM of screen reader users found that <a href="https://webaim.org/projects/screenreadersurvey4/#javascript" rel="noopener nofollow ugc">98.6% of respondents had JavaScript enabled</a>. The numbers are even higher for users with <a href="https://webaim.org/projects/lowvisionsurvey/#javascript" rel="noopener nofollow ugc">low vision</a> or <a href="https://webaim.org/techniques/javascript/projects/motordisabilitysurvey/#javascript" rel="noopener nofollow ugc">motor disabilities</a>. In short, people with disabilities will experience scripting, so scripted content must be made natively accessible</em></p>
<p>^^^ Server rendered initial HTML answers that concern.</p>
<aside class="quote no-group" data-username="OvermindDL1" data-post="125" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Eh, you really aren’t that demographic though, that doesn’t make the demographic that you are in the entire world though. Working at a college really shows me how <em>very</em> important it is to have proper fallbacks (I didn’t really care either before here to be honest…).</p>
</blockquote>
</aside>
<p>Well, yeah. If your demographic isn’t ‘the world’, then design accordingly. That goes without saying.</p>
<p>None of the apps I’ve built the past decade, for myself or for clients, have been for government departments with locked-down JS.</p>
<aside class="quote no-group" data-username="OvermindDL1" data-post="125" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Eh, it’s not an “old” thing (although I am stuck on GUI-less consoles quite often) for most, but rather a compliance thing so it is actually useful. People with visual and/or motor disabilities are far far more common than one would think. <img src="https://forum.elixirforum.com/images/emoji/apple/frowning.png?v=15" title=":frowning:" class="emoji" alt=":frowning:" loading="lazy" width="20" height="20"></p>
</blockquote>
</aside>
<p>Right, but it’s still exceedingly uncommon to consume a website - as an individual user - outside of Chrome/Safari/Edge, even with a screen reader. And if you’re surfing without a GUI, you can’t expect a site to accommodate this slim use-case beyond basic HTML.</p>
<p>Fewer sites/apps these days even make sense in a HTTP verb-only context. There wouldn’t even be ‘static’ ways to represent functionality of most of the things I typically build now beyond the initial HTML render.</p>
<p>I think accessibility standards are being incorrectly conflated with a philosophy that eschews Javascript.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="112709" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/lets-discuss-phoenix-liveview/16427/128">Post #127</a>
	                </div>
	            </div>
              <div id="likers-container-112709" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="112709"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #127"></div>
  </section>
</div>
    <div class="postbit" id="112969" data-post-id="112969">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OvermindDL1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OvermindDL1/120/2677_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OvermindDL1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>It is uncommon, though - statistically.</p>
<p>0.2 - 0.7% worldwide.</p>
</blockquote>
</aside>
<p>That’s from a UK-centric survey, worldwide the value seems to average 1.1% with some countries averaging well over 2% and TOR users averaging over 10%, so it all depends on your focus as well.</p>
<p>However, that’s of people that are specifically disabling javascript on an entire page, that does not include people that use Ad Blockers (that block most 3rd party javascript) nor of matrix blockers (like uMatrix, that can block a whole lot more and specifically whitelist paths), and especially it does not include people using interfaces that don’t support javascript.</p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>A company (or just an individual developer that values their time) building apps needs to consider whether a) that 0.2 - 0.7% represents their target demographic, and b) whether the have the time/resources/interest in creating (often large-scale, and sometimes unfeasible) workarounds for JS-only functionality to serve that traffic</p>
</blockquote>
</aside>
<p>Rather they should just not start backwards and instead start with HTML and only add javascript to enhance interfaces, not require.</p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>GraphQL on the client-side is one of its major selling points.</p>
</blockquote>
</aside>
<p>Yep, that’s the useful thing of using it everywhere, you know it works and is well tested, and its trivial for a client to progressively enhance to use it while working without JS.  <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>In <a href="https://github.com/leebenson/reactql" rel="noopener nofollow ugc">ReactQL </a>, the out-the-box demo component I provide pulls stories from HackerNews via SSR and delivers the result in React-rendered HTML:</p>
</blockquote>
</aside>
<p>Funny enough, <a href="https://reactql.org/" rel="noopener nofollow ugc">their homepage</a> is fully functional without javascript, there is not even any first-party javascript at all and the javascript just seems to add some animations and embed youtube and so forth (though you can easily have a video on the page without javascript too, but eh).  ^.^</p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>Subsequent requests to a GraphQL API server (or routing) are performed on the client, cutting out the need to round-trip to a server to rebuild HTML.</p>
</blockquote>
</aside>
<p>Yep yep, that’s part of progressively enhancing, everything works without javascript but it just becomes ‘better’ and more efficient with javascript.  <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>Modern screen readers can parse JS.</p>
</blockquote>
</aside>
<p>Not at the college here (well not any JS above some ancient standard, not even react works with it).</p>
<aside class="quote no-group quote-modified" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>From <a href="https://webaim.org/techniques/javascript/" class="inline-onebox" rel="noopener nofollow ugc">WebAIM: Accessible JavaScript - Overview of Accessible JavaScript</a> :</p>
</blockquote>
</aside>
<p>Those sound like ones that are browser addons, the ones we are required to use are not because they reach a required level of ADA compliance for the college.</p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>None of the apps I’ve built the past decade, for myself or for clients, have been for government departments with locked-down JS.</p>
</blockquote>
</aside>
<p>That’s been my life for the past… wow its been over 10 years of work now…  &gt;.&gt;<br>
The past 3 years I’ve been having to dev ‘for’ it as well (not just forced to use things without javascript as the previous 8 years before that).</p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>Right, but it’s still exceedingly uncommon to consume a website - as an individual user - outside of Chrome/Safari/Edge, even with a screen reader. And if you’re surfing without a GUI, you can’t expect a site to accommodate this slim use-case beyond basic HTML.</p>
</blockquote>
</aside>
<p>It may not look pretty, but I sure have the expectation to be able to at least read the ‘content’ of the site that I’m going for, whether a blog entry or stack overflow request or something, but just seeing ‘Nothing’ or “Please enable your non-existing javascript” is entirely bad form.  Sure request javascript for enhanced features, but at <em>least</em> let me read what I came to read…  &gt;.&gt;</p>
<aside class="quote no-group" data-username="lee" data-post="128" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p>I think accessibility standards are being incorrectly conflated with a philosophy that eschews Javascript.</p>
</blockquote>
</aside>
<p>I absolutely don’t eschew javascript, and use it when I can (whitelisted via uMatrix so most sites actually load decently fast, literally its the difference between a half second to load and 30 seconds to load on some sites…), just it should not be required for the ‘base’ functionality.  Chat interfaces, real-time web games, push-requests, all those and more are absolutely fine in javascript even if you could ‘mimic’ it inefficiently with just HTML and SSR, but at least let the site ‘work’ for what makes sense without it.  ^.^</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="112969" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/lets-discuss-phoenix-liveview/16427/129">Post #128</a>
	                </div>
	            </div>
              <div id="likers-container-112969" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="112969"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #128"></div>
  </section>
</div>
    <div class="postbit" id="112983" data-post-id="112983">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="triskweline" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/triskweline/120/4165_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  triskweline
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Today <a href="https://unpoly.com" rel="noopener nofollow ugc">Unpoly</a> 0.60 was released. <strong>jQuery is no longer required!</strong> Unpoly now has zero dependencies.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="112983" data-batch-url="/posts/batch_likers">
                        10
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/lets-discuss-phoenix-liveview/16427/130">Post #129</a>
	                </div>
	            </div>
              <div id="likers-container-112983" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="112983"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #129"></div>
  </section>
</div>
    <div class="postbit" id="113177" data-post-id="113177">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="lee" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/120/13472_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  lee
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="129" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Funny enough, <a href="https://reactql.org/" rel="noopener nofollow ugc">their homepage</a> is fully functional without javascript, there is not even any first-party javascript at all and the javascript just seems to add some animations and embed youtube and so forth (though you can easily have a video on the page without javascript too, but eh). ^.^</p>
</blockquote>
</aside>
<p><em>Their</em> website is <em>my</em> web page <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p>
<p>I designed ReactQL with SSR for exactly that reason.</p>
<p>Although I think that page is a poor example, because it’s <em>literally</em> just HTML. There’s no functionality to speak of.</p>
<p>Very different to, say, a back-office app.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="113177" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/lets-discuss-phoenix-liveview/16427/131">Post #130</a>
	                </div>
	            </div>
              <div id="likers-container-113177" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="113177"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #130"></div>
  </section>
</div>
    <div class="postbit" id="113185" data-post-id="113185">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OvermindDL1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OvermindDL1/120/2677_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OvermindDL1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="lee" data-post="131" data-topic="16427">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lee/48/13472_2.png" class="avatar"> lee:</div>
<blockquote>
<p><em>Their</em> website is <em>my</em> web page <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p>
<p>I designed ReactQL with SSR for exactly that reason.</p>
<p>Although I think that page is a poor example, because it’s <em>literally</em> just HTML. There’s no functionality to speak of.</p>
<p>Very different to, say, a back-office app.</p>
</blockquote>
</aside>
<p>Hehe, well I love it, it worked sans javascript so I didn’t even need to whitelist anything and yet it was all usable.  ^.^</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="113185" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/lets-discuss-phoenix-liveview/16427/132">Post #131</a>
	                </div>
	            </div>
              <div id="likers-container-113185" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="113185"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-last-post cat-last-post" title="Last post!"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <span class="all-loaded">— All posts loaded —</span>
</div></template></turbo-stream>