레이블이 blogger인 게시물을 표시합니다. 모든 게시물 표시
레이블이 blogger인 게시물을 표시합니다. 모든 게시물 표시

2016년 6월 5일 일요일

Google blogger custom template settings, More custom template flexibility

https://blogger.googleblog.com/2016/05/more-custom-template-flexibility.html

More custom template flexibility

Last May, we added some expressions to our templating language to make it easier for you to customize your blog’s look and feel. These new expressions proved popular with those of you who enjoy advanced blogging tools, so we wanted to offer you even more flexibility. 

Starting today, we’re introducing a new set of operators, which we’re calling lambda expressions, that allow you to apply rules to whole sets of data (think posts, comments, or labels), rather than just individual instances. 

Let’s say you wanted to add a flower image to all posts with the label “Flower,” for example. With lambda expressions, simply define a variable name that each item in the set will take, and then refer to the variable name as though it were each item.


<!-- Show a Flower image if the post has the label flower -->
<b:if cond='data:post.labels any (l => l.name == "Flower")'>
 <img src=’/img/flower.jpg’ />
<b:if/>

This code will show if label is "Flower"
Like this below.

Help this Lambda expression,

Follow this blogger +Blogger
inform this informations

2016년 4월 21일 목요일

Code Highlight setting on Google Blogger

1. Go to your blog home -> template -> edit HTML



2. Add CSS code
add to <b:skin> part



3. Add Javascript code
add to <head>  part



4. Add Javascript code to body tag


5. Use
use textarea OR pre tag
class="language" name="code"




I hope you could use this.
Thanks

2016년 4월 12일 화요일

Blogger page vs post

See this video



It shows Wordpress blog pages, posts, but basic concept is same.

Posts

Posts are entries listed in reverse chronological order on the blog home page
Like this URL example
http://blogspot.pineoc.com/2016/04/12/post-vs-page/


Pages

Pages are static and are not listed by date. Pages do not use tags or categories.
Like this URL example
http://blogspot.pineoc.com/post-vs-page/

Ref : https://en.support.wordpress.com/post-vs-page/

JIRA Plugin - ScriptRunner 소개 #2

관련 글 소개 #1:  https://pineoc.blogspot.com/2019/03/scriptrunner-1.html ScriptRunner 소개 #2 지난 글에서는 Behaviours를 보았고 다음 내용인 콘솔, 리스너 등을 ...