"; } if ($*custom_css != "") { println """"""; } } function Page::print () { var Page page = get_page(); var string title = $this->title(); var string page_align = ""; if ($*page_alignment == "left") { $page_align = " margin-left: 20px; margin-right: auto;"; } elseif ($*page_alignment == "right") { $page_align = " margin-left: auto; margin-right: 20px;"; } elseif ($*page_alignment == "center") { $page_align = " margin-left: auto; margin-right: auto;"; } """ """; $this->print_head(); $this->print_stylesheets(); print safe """$title"""; $this->print_custom_head(); """ """; $this->print_control_strip(); if (viewer_sees_hbox_top()) { """
"""; $this->print_hbox_top(); "
"; } """
"""; $this->lay_print_header(); if ($*show_sidebar) { """ """; } elseif (viewer_sees_vbox()) { """"; } """
"""; $this->print_body(); "
"; $this->lay_print_footer(); "
"; if (viewer_sees_hbox_bottom()) { """
"""; $this->print_hbox_bottom(); "
"; } " "; } function Entry::print_linkbar() { # Links (memories, edit, prev, next) var Page p = get_page(); if ($p.view == "entry" or $p.view == "reply") { var Link prev = $this->get_link("nav_prev"); var Link next = $this->get_link("nav_next"); var string{} link_text = { "edit_entry" => $*text_edit, "edit_tags" => $*text_edit_tags, "mem_add" => $*text_memories, "tell_friend" => "", "watch_comments" => $*text_track, "unwatch_comments" => $*text_untrack, }; print safe """
 
 
"""; } } function print_entry(Page p, Entry e, Color bgcolor, Color fgcolor) { """"""; $e->print_linkbar(); # Userpic var string userpic = ""; if ($*show_entry_userpic) { if ($p.view == "friends" or $p.view == "entry") { if (defined $e.userpic) { $userpic = $userpic + """$e.poster.name"; } } elseif ($p.journal_type == "C" and $p.view == "recent") { if (defined $e.userpic) { $userpic = $userpic + """$e.poster.name"""; } } else { if (defined $e.userpic) { $userpic = $userpic + """
$e.poster.name
"""; } } } print """
"""; if (($p.view == "recent" and $p.journal_type != "C" ) or $p.view == "day") { print """$userpic"""; } else { if ($p.view == "recent" and $p.journal_type == "C" ) { """
"""; } else { """
"""; } print """$userpic"""; # Poster if ($p.view == "friends" or $p.view == "entry") { var UserLite linkto; $linkto = $e.poster; #print "$e.poster.username"; """
base_url() + "\">"; "$linkto.username"; } elseif ($p.journal_type == "C" and $p.view == "recent") { var UserLite linkto; $linkto = $e.poster; #print "$e.poster.username"; """
base_url() + "\">"; "$linkto.username"; } if (($p.view == "friends" or $p.view == "entry") and $e.poster.username != $e.journal.username) { var UserLite linkto; $linkto = $e.journal; """
[base_url() + "\">"; "$linkto.username]"; } if ($p.view == "recent" and $p.journal_type == "C") { print "
"; } if ($p.view != "recent" and $p.view != "day") { print """
"""; } } # Date, time, subject var string time = ""; $time = $time + """ @ """; $time = $time + $e.time->time_format("short"); var string date = ""; $date = $date + $e.time->date_format("long_day"); """
"""; print $e.time->date_format("%%dd%% %%month%% %%yyyy%%"); "$time
"; """
"""; if ($e.security != "") { $e.security_icon->print(); } """ $e.subject  
"""; """
"""; $e->print_text(); print "
"; # Currents var string currents =""; $e->print_metadata(); # Comments """
 
"""; if ($p.view != "entry" or $p.view != "reply") { $e.comments->print(); } elseif ($e.comments.enabled) { $e.comments->print_postlink(); } else { " "; } """
 
"""; } function Page::print_entry(Entry e) { print_entry($this, $e, null Color, null Color); } function FriendsPage::print_entry (Entry e) { if ($*use_friends_colours) { var Friend f = $.friends{$e.journal.username}; print_entry($this, $e, $f.bgcolor, $f.fgcolor); } else { print_entry($this, $e, $*entry_bgcolor, $*entry_fgcolor); } } function EntryPage::print_entry(Entry e) { print_entry($this, $e, $*entry_bgcolor, $*entry_fgcolor); } function Entry::print_metadata() { if (size $.metadata) { print """
 
 
"""; var string currents; foreach var string k ($.metadata) { var string text = $k; var string val = $.metadata{$k}; if ($k == "mood") { $text = $*text_meta_mood; } elseif ($k == "music") { $text = $*text_meta_music; } elseif ($k == "location") { $text = $*text_meta_location; } if ($k == "mood" and defined $.mood_icon) { var Image i = $.mood_icon; $val = " $val"; } $currents = $currents + """
$text: $val
"""; } $currents = $currents + "
"; println safe "$currents"; } } function RecentPage::lay_print_footer() { var string range = "most recent entries"; var string sep; var string back; var string forward; if ($.nav.skip > 0) { $range = "$.nav.skip entries back"; } if ($.nav.forward_url != "" or $.nav.backward_url != "") { if ($.nav.backward_url != "") { $back = """
  • """ + get_plural_phrase($.nav.backward_count, "text_skiplinks_back") + """
  • """; } if ($.nav.forward_url != "") { $forward = """
  • """ + get_plural_phrase($.nav.forward_count, "text_skiplinks_forward") + """
  • """; } } print safe """
     
     
    """; } function RecentPage::print_body { foreach var Entry e ($.entries) { $this->print_entry($e); } } function EntryPage::print_body() { $this->print_entry($.entry); if ($.multiform_on and $.entry.comments.enabled and $.comment_pages.total_subitems > 0) { $this->print_multiform_start(); } if ($.entry.comments.enabled) { """
    """; $.comment_pages->print(); """ ( Post a new comment )
    """; $this->print_comments($.comments); """
    """; } if ($this.multiform_on and $.entry.comments.enabled and $.entry.comments.count > 0) { """
    """; $this->print_multiform_actionline(); $this->print_multiform_end(); """
    ( Post a new comment )"""; $.comment_pages->print(); """
    """; } } # ----------------------------------- # ENTRY # ----------------------------------- function EntryPage::print_comments( Comment[] comments ) { if ( size $comments == 0 ) { return; } foreach var Comment c ( $comments ) { var int indent = ($c.depth - 1) * 30; var string partialcomment = $c.full ? "" : "partial"; var string margin = ""; if ($*userpic_position == "left") { $margin = "right"; } else { $margin = "left"; } """"""; """
    \n"""; if ( $c.full ) { $this->print_comment( $c ); } else { $this->print_comment_partial( $c ); } "
    "; $this->print_comments( $c.replies ); } } function EntryPage::print_comment (Comment comment) { var string subject = $comment.subject ? $comment.subject : $*text_nosubject; var string date = $comment.time->date_format(); var string poster = isnull $comment.poster ? $*text_poster_anonymous : $comment.poster->as_string(); #Comment Userpic if (defined $comment.userpic and $*show_entry_userpic) { var int w = $comment.userpic.width; var int h = $comment.userpic.height; var string alt = $comment.metadata{"picture_keyword"}; if ($*comment_userpic_style == "small") { $w = $w / 2; $h = $h / 2; } if ($alt != "") { $alt = ": " + $alt; } """
    $comment.poster.name$alt"""; print """$poster on """; print $comment->time_display("long", ""); } else { print """
    $poster on """; print $comment->time_display("long", ""); } if (defined $comment.subject_icon or $comment.subject != "") { print "
    $comment.subject_icon $comment.subject" + "
    "; } if ($comment.metadata{"poster_ip"}) { print "
    " + $*text_comment_ipaddr + "(" + $comment.metadata{"poster_ip"} + ")" + "
    "; } "
    "; print """
    """; $comment->print_text(); """
    \n"""; var string alignlinks = ""; if ($*userpic_position == "left") { $alignlinks = "right"; } else { $alignlinks = "left"; } "
    "; if ($comment.frozen) { "($*text_comment_frozen)"; } else { "($*text_comment_reply) "; } if ($comment.parent_url != "") { "($*text_comment_parent) "; } if ($comment.thread_url != "") { """($*text_comment_thread) """; } "($*text_permalink)"; """
    """; if ($this.multiform_on) { """"""; $comment->print_multiform_check(); } $comment->print_linkbar(); "
    \n"; } function EntryPage::print_comment_partial( Comment c ) { var string subject = $c.subject ? $c.subject : $*text_nosubject; var string date = $c->time_display("long", ""); var string poster = isnull $c.poster ? $*text_poster_anonymous : $c.poster->as_string(); print safe """$subject - $poster on $date"""; } # ----------------------------------- # DAY # ----------------------------------- function DayPage::print_body() { """
     
     
    """; if ($.has_entries) { foreach var Entry e ($.entries) { $this->print_entry($e); } } else { """

    $*text_noentries_day

    """; } """
     
     
    """; } function CommentInfo::print() { if (not $.enabled) { return; } if ($.count > 0 or $.screened) { $this->print_readlink(); " | "; } $this->print_postlink(); } # ----------------------------------- # REPLY # ----------------------------------- function ReplyPage::print_body { if (not $.entry.comments.enabled) { print "

    $*text_reply_nocomments_header

    $*text_reply_nocomments

    "; return; } $.entry->print_linkbar(); """
    """; if (defined $.replyto.userpic) { print """
    $.replyto.userpic
    """; } var string poster = isnull $.replyto.poster ? $*text_poster_anonymous : $.replyto.poster->as_string(); var Page p; print """
    """; print $.replyto.poster.name + " ("; print $poster + ") "; print "wrote"; if ($.journal_type == "C") { print " in "; print $.replyto.journal; print " "; } print " "+lang_at_datetime($.replyto.time); print """
    $.replyto.subject
    """; $.replyto->print_text(); """
     
    ( Read comments )
    Post a comment in response:
    """; $.form->print(); "
    "; } # ----------------------------------- # MONTH # ----------------------------------- function MonthPage::print_body { "

    "; $.redir->print_hiddens(); if ($.prev_url != "") { "[<<<]\n"; } if (size $.months > 1) { "\n"; } if ($.next_url != "") { "\n[>>>]\n"; } """
    \n

    """; foreach var MonthDay d ($.days) { if ($d.has_entries) { "
    "; print lang_ordinal($d.day); "
    \n
    "; $d->print_subjectlist(); "
    \n"; } } "
    "; } # ----------------------------------- # YEAR # ----------------------------------- function YearPage::print_body { $this->print_year_links(); foreach var YearMonth m ($.months) { $this->print_month($m); } } function YearPage::print_year_links() { """\n"""; } function YearPage::print_month(YearMonth m) { if (not $m.has_entries) { return; } """\n \n"""; foreach var int d (weekdays()) { """\n"; } "\n"; foreach var YearWeek w ($m.weeks) { $w->print(); } "
    """; print $m->month_format(); print safe """ $*text_view_month
    """+$*lang_dayname_short[$d]+"



    "; } function YearWeek::print() { """\n"""; if ($.pre_empty > 0) { """ \n"""; } foreach var YearDay d ($.days) { """\n"""; """
    $d.day
    \n"""; if ($d.num_entries > 0) { """
    $d.num_entries
    \n"""; } else { """
     
    """; } """\n"""; } if ($.post_empty > 0) { """ \n"""; } ""; } function print_theme_preview() { var string content_font_family = css_font_family($*content_font, $*content_font_fallback); """
     
    25 November 2006 @ 04:58 pm
    Lorem ipsum dolor sit amet
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc tincidunt sollicitudin orci. Vivamus sollicitudin arcu non mi lobortis lacinia. Sed quis orci. Vestibulum in risus sit amet lectus gravida pellentesque. Curabitur faucibus risus eu pede hendrerit eleifend. Nunc vitae odio. Praesent turpis velit, venenatis vitae, accumsan quis, aliquam scelerisque, diam. Nulla fringilla dapibus nulla. Sed in sapien sit amet odio eleifend venenatis. Nunc neque ipsum, convallis id, volutpat eget, bibendum placerat, magna. Integer commodo, nunc eu faucibus tincidunt, est lectus sodales purus, pulvinar pretium purus diam sollicitudin justo. Nulla facilisi. Vivamus eleifend. Fusce sodales dui sit amet dolor.
     
    3 comments | Leave a comment
     
    """; } /* CREDIT fit @ dreamwidth */ /* main layout */ body { background: #f7f6ea;} a, a:link, a:visited { text-decoration: none; color: #8d8477; } blockquote { background: url(http://i.imgur.com/ecUCq.png); font-size: 10px; width: 250px; padding-left: 10px; padding-right: 10px; padding-bottom: 10px; margin-left: -2px; } #content { width: 600px; margin-right: auto; margin-left: auto; margin-bottom: auto; background-color: transparent; } #maincontent { background: transparent; border-right: 0px #f7f7f7 solid; margin-right: auto; margin-left: auto; margin-top: 30px; } #sidebar { background: transparent; float: left; margin-top: 40px; width: auto; height: auto; } #header { display: none; } #footer { width: 700px; padding: 5px; font-family: georgia; font-size: 16px; background: transparent; font-style: italic; color: #aba295; text-transform: lowercase; text-align: center; } /* header -- links to views; title of journal; subtitle of journal */ ul.navheader { padding: 0px; margin: 0px; } ul.navheader li { display:inline; padding: 0 10px 0 0px; } .title, .subtitle { display:none; } /* sidebar */ .defaultuserpic { display: none; } .defaultuserpic img { display: none; } .sbarheader { padding: 0px; } .sbarbody { padding: 0px; } .sbarbody2 { position: absolute; top: 200px; left: 50px; width: 150px; padding: 20px; background: #fefefa; border-left: 5px solid #e7e5d0; font-family: georgia; font-size: 10px; color: #aba295; float: left; } table.calendar { display:none; } .sbarcalendar { display:none; } .sbarcalendarposts { display:none; } ul.sbarlist{ list-style: none; position: absolute; top: 185px; left: 190px; background: transparent; align: center; margin-left: 20px; } div#sidebar a { color: #8d8477; } div#sidebar a:hover, div#sidebar li.sbaritem:hover a{ color: #aba295; } li.sbaritem{ display: list; background: #fefefa; border-left: 5px solid #e7e5d0; border-bottom: 1px solid #f2f2e9; color: #aba295!important; padding-top: 3px; padding-bottom: 3px; padding-left: 2px; padding-right: 10px; margin-bottom: 2px; font-size: 10px; font-family: lucida console; text-transform: uppercase; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; } li.sbaritem:hover{ color: #8d8477; background: #fefefa; border-left: 5px solid #fafaf6; padding-right: 10px; -moz-border-radius: 0px; -webkit-border-radius: 0px; -khtml-border-radius: 0px; } li.sbartitle{ padding-left: 0px; margin-left: 0px; display: none; } /* maincontent */ .subcontent { background: transparent; padding: 20px; } .entry { background: #fefefa; width: 400px; color: #aba295; font-family: georgia; font-size: 10px; line-height: 10px; text-align: justify; padding: 30px; } .entry img { max-width: 250px; } .entry ul li { padding-left: 5px; margin-left: 15px; } .entry ol li { padding-left: 5px; margin-left: 15px; } .userpic, .userpicfriends { background: #fff!important; float: right; margin-top: 10px; margin-right: -60px; font-size: 0px!important; padding: 10px; -moz-border-radius: 100px; -webkit-border-radius: 100px; -kthml-border-radius: 100px; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; } .userpic img:hover, .userpicfriends img:hover { -webkit-transform: rotate(-180deg); -moz-transform: rotate(-180deg); } .userpicfriends font, .userpic font { font-size: 0px!important; color: transparent; background: transparent; } .userpicfriends img, .userpic img { height: 100px; width: 100px; -moz-border-radius: 100px; -webkit-border-radius: 100px; -kthml-border-radius: 100px; -webkit-transition: all 0.9s ease; -moz-transition: all 0.9s ease; -o-transition: all 0.9s ease; } .date { display: none; } .subject, h2 { width: 450px!important; text-align: left; font-family: georgia; padding-left: 10px; padding-top: 10px; font-size: 16px; font-style: italic; letter-spacing: 2px; text-transform: lowercase; background: #fefefa; } .subject a:link, .subject a:visited, code, .datesubjectcomment a:link, .datesubjectcomment a:visited { color: #aba295; -webkit-transition: all 0.9s ease; -moz-transition: all 0.9s ease; -o-transition: all 0.9s ease; } .subject a:link:hover { filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; } .datesubject { } .currents { margin-top: 10px; margin-bottom: -10px; text-transform: lowercase; color: #c4beb5; font-size: 9px; line-height: 10px; font-family: georgia; font-style: italic; text-align: left; padding-bottom: 2px; } .ljtags { text-transform: lowercase; font-size: 9px; color: #c4beb5; font-family: georgia; font-style: italic; margin-top: 10px; margin-bottom: -10px; text-align: left; } .ljtags a { color: #c4beb5; } .comments { padding-top: 10px; margin-bottom: -15px; font-family: georgia; font-style: italic; font-size: 10px; text-transform: uppercase; text-align: left; color: #000; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; } .comments:hover { filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; } /* maincontent -- year/archive pages */ ul.year { text-align: center; padding-bottom: 5px; } ul.year li { display: inline; } table.yeartable { margin-left: auto; margin-right: auto; } table.yeartable td.yeardate, table.yeartable td.yearday { border-width: 0px; border-style: solid; border-color: #999999; } table.yeartable td.yearday { background-color: #eeeeee; text-align: center; } td.yearmonth { border-style: none; } /* footer */ ul.navfooter{ padding: 0px; margin: 0px; } ul.navfooter li { display: inline; margin: 0 5px 0 5px; } .clearfoot { clear: both; } /* misc */ .ljtaglist { list-style-type: none; padding: 10px; background-color: #ffffff; font-family: lucida console; font-size: 9px; text-align: left; } .clear { height: 0px; } .skiplinks { text-align: center; } .separator{ margin-top: -30px!important; } div.ContextualPopup .Content { padding: 5px; background: #fdfdfd!important; border: 0px; } div.ContextualPopup div.Inner { background: #fafafe!important; color: #aba295!important; font-family: tahoma; text-transform: uppercase; border: 0px; } div.ContextualPopup .Userpic { padding: 10px; background: #fafafe; -moz-border-radius: 100px; -kthml-border-radius: 100px; -webkit-border-radius: 100px; } div.ContextualPopup div.Inner a:link, div.ContextualPopup div.Inner a:visited { text-decoration: none!important; font-weight: normal; color:#aba295!important; font-size: 10px; } div.ContextualPopup div.Inner a:hover } color:#c4beb5!important; background-color: #fefefa; text-transform: uppercase; } #lj_controlstrip { background:#c4beb5 none repeat scroll 0 0; text-transform: uppercase; } #lj_controlstrip td { border-bottom:medium none; border-right:0px solid #151515; color:#c4beb5; text-transform: uppercase; } #lj_controlstrip_statustext { color:#aba295; font-weight: bold!important; font-family: courier new; text-transform: uppercase; } #lj_controlstrip a { color:#aba295; font-family: courier new; text-transform: uppercase; text-transform: bold; } #lj_controlstrip_user, #lj_controlstrip_actionlinks, #lj_controlstrip_search, #lj_controlstrip_login, #lj_controlstrip_loggedout_userpic { border-right:0 none; } #lj_controlstrip_login td { border-bottom:0 none; } #lj_controlstrip td td { border-bottom:0 none; } #lj_controlstrip_userpic { background-image: none; } #lj_controlstrip_loggedout_userpic { background-image: none; } #lj_controlstrip input { background: #fdfdfd none repeat scroll 0 0 !important; border:medium none; color:#c4beb5!important; text-weight: bold!important; font-family: courier new; text-transform: uppercase; } #lj_controlstrip_search_input_text, #lj_controlstrip select, #lj_controlstrip input#xc_user, #lj_controlstrip input#xc_password, #lj_controlstrip input#xc_remember { background:#fdfdfd none repeat scroll 0 0 !important; border:medium none; color:#c4beb5!important; font-weight: bold!important; font-family: courier new; text-transform: uppercase; } #lj_controlstrip .ljuser a b { background: #fdfdfd none repeat scroll 0 0; letter-spacing:0; text-decoration:none !important; } tbody { background: #fefefa; } cakeglutton | Recent Entries
    Icon
    Home   Post  Reading  Settings  Inbox (108)

    Profile

    cakeglutton: (Default)
    hahis

    January 2013

    S M T W T F S
      12345
    6789101112
    13141516171819
    20212223242526
    2728293031  

    Syndicate

    RSS Atom

    Style Credit

    Expand Cut Tags

    No cut tags
    Page generated Jan. 10th, 2013 05:20 pm
    Powered by Dreamwidth Studios